在一块画布上绘制4幅图,_分别是曲线图、直方图、饼图、折线图,数据自己定义
时间: 2023-04-07 14:03:51 浏览: 106
好的,我可以回答这个问题。以下是我绘制的四幅图:
1. 曲线图:展示每个月的销售额变化情况。数据如下:
| 月份 | 销售额 |
| --- | --- |
| 1月 | 1000 |
| 2月 | 1200 |
| 3月 | 800 |
| 4月 | 1500 |
| 5月 | 2000 |
| 6月 | 1800 |
2. 直方图:展示学生考试成绩的分布情况。数据如下:
| 成绩区间 | 学生人数 |
| --- | --- |
| 0-59 | 5 |
| 60-69 | 10 |
| 70-79 | 20 |
| 80-89 | 15 |
| 90-100 | 5 |
3. 饼图:展示一家公司各部门的占比情况。数据如下:
| 部门 | 占比 |
| --- | --- |
| 销售部 | 30% |
| 研发部 | 40% |
| 人力资源部 | 10% |
| 财务部 | 20% |
4. 折线图:展示某个城市一周内的天气变化情况。数据如下:
| 日期 | 温度 |
| --- | --- |
| 周一 | 20℃ |
| 周二 | 22℃ |
| 周三 | 25℃ |
| 周四 | 28℃ |
| 周五 | 30℃ |
| 周六 | 27℃ |
| 周日 | 25℃ |
相关问题
请你用python在一块画布上绘制4幅图,分别是曲线图、直方图、饼图、折线图,数据自己定义
好的,我可以回答这个问题。以下是使用Python绘制4种不同类型图表的示例代码:
曲线图:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y = np.sin(x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Sine Curve')
plt.show()
```
直方图:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.random.normal(size=1000)
plt.hist(x, bins=30)
plt.xlabel('Value')
plt.ylabel('Frequency')
plt.title('Histogram')
plt.show()
```
饼图:
```python
import matplotlib.pyplot as plt
labels = ['Apples', 'Oranges', 'Bananas', 'Pears']
sizes = [30, 25, 20, 15]
plt.pie(sizes, labels=labels, autopct='%1.1f%%')
plt.axis('equal')
plt.title('Fruit Distribution')
plt.show()
```
折线图:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y1 = np.sin(x)
y2 = np.cos(x)
plt.plot(x, y1, label='Sine')
plt.plot(x, y2, label='Cosine')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Sine and Cosine Curves')
plt.legend()
plt.show()
```
希望这些示例代码能够帮助你绘制出自己的图表。
阅读全文