Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 606 Bytes

jupyter.md

File metadata and controls

26 lines (20 loc) · 606 Bytes

Install mage_ai

$ pip3 install git+https://github.com/mage-ai/mage-ai.git#egg=mage-ai

Run Jupyter

$ export HOST=0.0.0.0
$ jupyter notebook --ip=* --allow_origin=*

Start app

import mage_ai
from mage_ai.sample_datasets import load_dataset

from datetime import datetime


now = datetime.utcnow().timestamp()
mage_ai.connect_data(load_dataset('titanic_survival.csv'), name=f'titanic dataset {now}')
mage_ai.connect_data(load_dataset('salary_survey.csv'), name=f'salary survey {now}')

mage_ai.kill()
mage_ai.launch(iframe_host='18.237.55.91', iframe_port=5789)