(1)已知样本点的横轴坐标值为[1,2,3,4],纵轴坐标值为[4,3,2,1],绘制折线图 (2)折线颜色设置为红色(r),用短横线(--)相连,并用圆圈(o)标注给出的各个样本点的坐标图。 (3)设置横轴xlabel名称为x,纵抽ylable名称为y,图的标题(title)为折线图 (4)折线图例(图例legend),在画布中添加网格(grid) 名字不能显示中文命令: import matplotlib matplotlib.rcParams['font.sans-serif'] = 'SimHei' matplotlib.rcParams['axes.unicode_minus'] = False
时间: 2023-07-15 16:10:32 浏览: 156
新教科版物理选修3-4同步讲义:波的图像.pdf
以下是Python代码实现:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4]
y = [4, 3, 2, 1]
# 绘制折线图
plt.plot(x, y, 'r--o')
# 设置横轴和纵轴标签和标题
plt.xlabel('x')
plt.ylabel('y')
plt.title('折线图')
# 添加图例
plt.legend(['样本点'])
# 添加网格线
plt.grid()
# 显示图形
plt.show()
```
运行后,会弹出一个窗口显示折线图,其中样本点用圆圈标注,折线用短横线相连,颜色为红色。图形包含横轴和纵轴标签、标题、图例和网格线。
阅读全文