1、引用的基本常用python模块
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
2、为了在横纵坐标中显示中文,需要进行相应设置
# 经过此项设置,可以使用于显示的可视化坐标图中显示中文
mpl.rcParams["font.sans-serif"] = ["SimHei"]
3、x,y轴的对应值的获取
x = np.arange(start=-10, stop=10, step=0.1)
y = []
for t in x:
y_t = 1 / (1 + math.exp(-t))
y.append(y_t)
4、图像的一些参数设置,plt.figure()
plt.figure(dpi=80,figsize=(18,8))
"""
plt.figure()参数说明
num:图像编号或名称
figsize:指定figure的宽和高,单位为名称
dpi:指定绘图对象的分辨率,意思是每英寸多少个像素,缺省值为80,1英寸为2.5cm,A4纸的21*30cm
facecolor:背景颜色
edgecolor:边框颜色
frameon:是否显示边框
"""
plt.figure(num=1, figsize=(18, 8),
dpi=100, # defaults to rc figure.dpi
facecolor="pink", # defaults to rc figure.facecolor
edgecolor="green", # defaults to rc figure.edgecolor
)
如图1所示,中间是生成的sin函数图像,横纵坐标尚未设置
图1 plt.figure()部分参数设置效果图
2022年12月1日20:55:21,今天就更到这儿,未完待续……