数据可视化是指通过可视化表示来搜索数据,与数据挖掘仅仅相关
一、安装matplotlib
进入命令行,输入pip install matplotlib便会自动安装。
二、绘制简单曲线
#coding=gbk
import matplotlib.pyplot as plt
import numpy as np
squares=[1,4,9,16,25]
plt.plot(squares,linewidth=5)
#设置标题以及坐标标签
plt.title("Square Numbers",fontsize=24)
plt.xlabel("Value",fontsize=14)
plt.ylabel("Square of Value",fontsize=14)
#设置刻度标记的大小
plt.tick_params(axis='both',labelsize=14)
plt.show()
![](/images/图形1.jpg)