摘要:
1. 使用matplotlib绘制多条折线图 使用多次plot方法 plt.plot(x, y_shanghai, label="上海") plt.plot(x, y_beijing, color="r", linestyle="--", label="北京") 2. 使用matplotlib绘制多 阅读全文
摘要:
Matplotlib是一款专门用于开发2D图表(包括3D图表)、以渐进、交互方式实现数据可视化的工具。 Matplotlib的基本使用: 1. 安装Matplotlib 最好准备一个虚拟环境来用。 workon ai_study pip install matplotlib 2. 使用Matplot 阅读全文
摘要:
1. 安装Jupyter pip install jupyter 2. Jupyter的初次使用 # 进入虚拟环境 workon ai # 输入命令 jupyter notebook 本地notebook的默认URL为:http://localhost:8888 想让notebook打开指定目录,只 阅读全文
摘要:
1. 导出命令 pip freeze > requirements.txt 2. 安装命令 pip3 install -r requirements.txt 阅读全文