赞
踩
- # -*- encoding: utf-8 -*-
- # @File : xlabel.py
- # @Author: Mr. Luo
- # @Date: 2021/11/4 13:22
- '''
- feature:设置x轴的标签文本
- '''
- # -*- encoding: utf-8 -*-
- # @File : xlim.py
- # @Author: Mr. Luo
- # @Date: 2021/11/4 13:16
- # -*- encoding: utf-8 -*-
- # @File : scatter.py
- # @Author: Mr. Luo
- # @Date: 2021/11/4 13:09
- '''
- feature:设置x坐标轴的数值显示范围
- '''
- import random
- import matplotlib.pyplot as plt
- import numpy as np
- '''
- string:标签文本内容
- 平移性:上面的函数功能,调用签名和参数说明同样可以平移到函数ylabel()上
- '''
- x = np.linspace(0.2, 10, 1000)
- y = np.cos(x)
- plt.scatter(x, y, c='r', label="figure")
- plt.legend()
- plt.xlabel("x")
- plt.ylabel("y")
-
- plt.show()
运行效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。