Can Modin and Pandas Coexist in a single program ? #4627
-
Can Modin and Pandas Coexist in a single program ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@tianlinzx thank you for the question. Yes, modin and pandas can coexist in one program. You can |
Beta Was this translation helpful? Give feedback.
@tianlinzx thank you for the question. Yes, modin and pandas can coexist in one program. You can
import modin.pandas as pd
or as whatever name you want (e.g.import modin.pandas as myname
) in one file, andimport pandas
int the same file or in another file. Mixing modin and pandas objects, however, is not supported. Does that answer your question?