📜  如何在 ipynb 文件中绘制数据 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:01.097000             🧑  作者: Mango

代码示例1
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')