Importing from other sources
Import any pandas dataframe into Mito.
Last updated
Was this helpful?
Import any pandas dataframe into Mito.
Last updated
Was this helpful?
Because Mito works seamlessly with Pandas dataframes, with only a bit of custom code, you can get any data you want into a mitosheet.
Here, we provide some internal links for reading from common databases into Pandas dataframes:
etc. Simply google "Reading {database name} into pandas dataframe" to get a tutorial for your database!
After getting the data from your database into a dataframe, simply into Mito.
Pandas provides an easy solution for getting data from a webpage into a pandas dataframe, which you can then pass to Mito. See a tutorial that uses the pd.read_html
function
After getting this webpage data into a dataframe, simply into Mito.
If you have data from a different data source you're looking to read into Mito, the first step is to get it into a pandas dataframe. Simply google "Reading {data source} into pandas dataframe," and you will most likely find an easy three-step tutorial for doing just this.
Then, after getting the data from your data source into a dataframe, simply into Mito to begin to work with it.