Importing Dataframes
How to import dataframes file into Mito.
Last updated
How to import dataframes file into Mito.
Last updated
© Mito
If you have a dataframe you created with Python, and you want to import it into your Mitosheet:
Click the Import button in the toolbar.
Click the Import Dataframes options in the dropdown that appears.
Click the + Add button to add a dataframe that is exists.
Click Import Dataframes to impor these dataframes into your sheet.
Importing a dataframe into Mito is as simple as adding the dataframe as a parameter to the mitosheet.sheet
call.
If we are attempting to import a dataframe named sales_data:
Create a new code cell with the code:
Then, run this cell. A mitosheet will appear with a single tab that contains this dataframe, which you can now begin exploring, editing, and more.
Mito allows you to import as many dataframes as you want. Each dataframe you import will be displayed in the mitosheet as a separate tab.
Imagine if we want to import sales_data
and customer_metadata
into the same mitosheet, so we can work with both of them at the same time.