标签:plot 机器 1.2 ext col 基础 imp 课程 python
博学谷-数据分析
python熟悉学科的基础
机器学习课程的基础
1.1 介绍
1.2 jupyter和conda
1.3 matplotlib
from matplotlib import pyplot as plt
x=range(2,26,2)
y=[15,13,14,5,17,20,25,26,24,22,15,23]
plt.plot(x,y)
plt.show()
标签:plot 机器 1.2 ext col 基础 imp 课程 python
原文地址:https://www.cnblogs.com/jiang910/p/10443995.html