import matplotlib.pyplot as plt # Import matplotlib
# This line is necessary for the plot to appear in a Jupyter notebook
%matplotlib inline
# Control the default size of figures in this Jupyter notebook
%pylab inline
pylab.rcParams['figure.figsize'] = (15, 9) # Change the size of plots
上面的代码片段
#开头的是注释
%matplotlib inline
%pylab inline
这两行是什么呢?
以% 或者 %% 开头的是魔法命令