Answers for "use plotly in jupyter"

0

pip plotly

pip install plotly
Posted by: Guest on November-17-2020
0

how to plot a data in ipynb file

import chart_studio.plotly as py
import plotly.figure_factory as ff
import pandas as pd

df = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/school_earnings.csv")

table = ff.create_table(df)
py.iplot(table, filename='jupyter-table1')
Posted by: Guest on December-12-2020

Code answers related to "use plotly in jupyter"

Browse Popular Code Answers by Language