AIGC ChatGPT4 生成Python可视化分析

使用Python进行数据分析,代码可以通过ChatGPT4来完成。

例如Prompt:

产品    销量
P1    48
P2    53
P3    82
P4    57
P5    89
P6    86
P7    30
P8    79
P9    96
将上述数据用Python通过可视化的图表来进行展示

AIGC ChatGPT4 生成Python可视化分析_第1张图片

完整代码如下:

import matplotlib.pyplot as plt

products = ['P1', 'P2', 'P3', 'P4', 'P5', 'P6', 'P7', 'P8', 'P9']
sales = [48, 53, 82, 57, 89, 86, 30, 79, 96]

plt.bar(products, sales, color='green')
plt.xlabel('Products')
plt.ylabel('Sales')
plt.title('Product Sales')
plt.show()

将代码拷贝到Pycharm中进行运行。

你可能感兴趣的:(ChatGPT实战案例,ChatGPT,AIGC,数据分析,excel,python,开发语言,人工智能,wps)