Installation — JupyterLab 4.0.2 documentation
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
import pandas as pd import numpy as np import matplotlib df = pd.DataFrame(np.random.randn(10,4),index=pd.date_range('1/1/2000', periods=10), columns=list('ABCD')) df.plot()View Code
标签:10,jupyterlab,df,matplotlib,pd,np,import From: https://www.cnblogs.com/shiningleo007/p/17578097.html