您的位置:首页 > 娱乐 > 八卦 > 代码网站推荐_中华人民共和国政府网官网_赣州网站建设_变现流量推广app

代码网站推荐_中华人民共和国政府网官网_赣州网站建设_变现流量推广app

2024/12/23 9:46:36 来源:https://blog.csdn.net/weixin_52236586/article/details/142803736  浏览:    关键词:代码网站推荐_中华人民共和国政府网官网_赣州网站建设_变现流量推广app
代码网站推荐_中华人民共和国政府网官网_赣州网站建设_变现流量推广app

在这里插入图片描述

import matplotlib.pyplot as plt
import numpy as np
plt.rcParams["font.sans-serif"] = ["SimHei"]  # 设置字体
plt.rcParams["axes.unicode_minus"] = False  # 该语句解决图像中的“-”负号的乱码问题# 数据
regions = ['东北', '中南', '华东', '华北', '西南']
years = [2015, 2016, 2017, 2018, 2019]
data = np.random.randint(50, 100, size=(5, 5))# 创建图形和3D轴
fig = plt.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection='3d')# 设置颜色
colors = ['r', 'g', 'b', 'y', 'c']# 绘制立柱
x_pos = np.arange(len(regions))
y_pos = np.arange(len(years))
x_pos, y_pos = np.meshgrid(x_pos, y_pos)
x_pos = x_pos.flatten()
y_pos = y_pos.flatten()
z_pos = np.zeros_like(x_pos)dx = dy = 0.8
dz = data.flatten()for i, (x, y, z, h) in enumerate(zip(x_pos, y_pos, z_pos, dz)):ax.bar3d(x, y, z, dx, dy, h, color=colors[i % len(colors)], alpha=0.8)# 设置坐标轴
ax.set_xticks(np.arange(len(regions)))
ax.set_yticks(np.arange(len(years)))
ax.set_xticklabels(regions)
ax.set_yticklabels(years)
ax.set_zlabel('销售额')# 设置视角
ax.view_init(elev=20, azim=45)# 设置标题
plt.title('每年每地区的销售额')# 显示图形
plt.tight_layout()
plt.show()

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com