matplotlib安装及使用

Posted endian11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib安装及使用相关的知识,希望对你有一定的参考价值。

  1. matplotlib的安装                                                                                                                                                                                                                                                                                                                                     我使用的是pycharm开发,直接在.py文件里导入import matplotlib,如果报错则证明没有安装,点击修成错误,pycharm会自动帮我们安装
  2. 绘制简单的折线图  
import matplotlib.pyplot as plt


squares = [1, 4, 9, 16, 34]
plt.plot(squares)
plt.show()

  3. 校正图形

import matplotlib.pyplot as plt

input_values = [1, 2, 3, 4, 5]
squares = [1, 4, 9, 16, 25]
plt.plot(input_values, squares, linewidth=5)  # linewidth决定了线条的粗细

# 设置图表标题,并给坐标轴加上标签
plt.title(‘Square Numbers‘, fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel(‘Square of value‘, fontsize=14)
plt.show()

# 设置刻度标记的大小
plt.tick_params(axis=‘both‘, labelsize=14)

  

以上是关于matplotlib安装及使用的主要内容,如果未能解决你的问题,请参考以下文章

python数据处理-matplotlib入门--安装及绘制简单的曲线

《Python机器学习及实践》----无监督学习之数据聚类

《Python机器学习及实践》----无监督学习之数据聚类

[Python]PyCharm中%matplotlib inline报错

续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段

Python中Matplotlib的点线形状及颜色(绘制散点图)