Importing from other sources
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!
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 here.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 import the dataframe into Mito to begin to work with it.