Skip to content

Is there a way to create a new data frame from a list #1882

Discussion options

You must be logged in to vote

Hey!

There is nothing stopping you to create a pandas dataframe first and then import the data in in vaex.
Something like

import pandas as pd
import vaex

df_pandas = pd.DataFrame(...) # Create a pandas dataframe in whatever way
df_vaex = vaex.from_pandas(df_pandas)

Would that work for you?

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@derrickcchow
Comment options

@JovanVeljanoski
Comment options

@derrickcchow
Comment options

@maartenbreddels
Comment options

Answer selected by derrickcchow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants