-
Notifications
You must be signed in to change notification settings - Fork 651
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to Convert modin.pandas.DataFrame to pandas.DataFrame #896
Comments
This is not part of the API as pandas.DataFrame, naturally, does not posses such a method. |
Thanks! |
how about reading a data frame into a modin data frame ? |
@Vaderv if you have a import pandas
import modin.pandas as pd
# have a pandas.DataFrame object called `pandas_df`
modin_df = pd.DataFrame(pandas_df) It is as easy as that 😄. It is important to note that this will cause some data distribution. |
@bdklahn Please review our code of conduct and make sure any future messages follow it: https://github.com/modin-project/modin/blob/master/CODE_OF_CONDUCT.md. Comments should be respectful and constructive. The comment by @eavidan above answers the question. If you follow the entire thread, my comment is answering a follow-up question. If you are running into an issue, please open a new issue. It more helpful to others looking for answers to questions to create another issue. |
@devin-petersohn , Sorry about that. I edited my comments accordingly. |
How to Convert modin.pandas.DataFrame to pandas.DataFrame
The text was updated successfully, but these errors were encountered: