【人工智能数据分析day05】matplotlib小案例+如果列表a表示10点到12点的每一分钟的气温,如何绘制折线图观察每分钟气温的变化情况?


import matplotlib.pyplot as plt
import random

fig = plt.figure(figsize=(20,8),dpi=80)

x = range(120)
a = [random.randint(20,35) for i in range(120)]
y = a

random.seed(10)

plt.plot(x,y)

_x_ticks = ["10点{}分".format(i) for i in x if i<60]
_x_ticks += ["11点{}分".format(i-60) for i in x if i>=60]
plt.xticks(x[::5],_x_ticks[::5],rotation=90)
plt.show()



坐标轴变成中文的见下期分析

全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务