机器学习-画图工具-matplotlib

机器学习,使用画图工具:matplotlib.pyplot

简单入门实例,x变量和y(sin)正弦函数的生成图片

代码如下:

import numpy as np
import matplotlib.pyplot as plt

x轴,使用numpy创建一个数组,代表x的范围,最大显示5
x = np.arange(0, 5, 0.1)
y轴是Sin函数根据x取值
y = np.sin(x)

example = plt.plot(x, y)
example = plt.title("x: array Y sin method")
example = plt.xlabel("X")
example = plt.ylabel("Sin")
example.figure.savefig("example", bbox_inches='tight')

得出图片:


机器学习-画图工具-matplotlib_第1张图片
example.png

你可能感兴趣的:(机器学习-画图工具-matplotlib)