写一个python带变量饼图代码 avat写一个python带变量山脊图代码 avatar
时间: 2024-02-01 07:02:07 浏览: 76
python绘制饼状图实例
当然,以下是一个使用Matplotlib库创建带变量的饼图的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
colors = ['red', 'blue', 'green', 'yellow']
# 饼图
plt.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%', startangle=90)
# 添加标题
plt.title('Variable Pie Chart')
# 显示图形
plt.show()
```
以下是一个使用Matplotlib库创建带变量的山脊图(ridge plot)的示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
# 数据
data = np.random.randn(100, 10)
# 山脊图
plt.figure(figsize=(10, 6))
plt.imshow(data, cmap='hot', aspect='auto')
plt.colorbar()
# 添加标题和标签
plt.title('Variable Ridge Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图形
plt.show()
```
希望这些示例代码对你有帮助!
阅读全文