python xticks_python – 了解matplotlib xticks语法

我正在读书,我遇到这个代码:

import matplotlib.pyplot as plt

plt.scatter(x,y)

plt.title("Web traffic over the last month")

plt.xlabel("Time")

plt.ylabel("Hits/hour")

plt.xticks([w*7*24 for w in range(10)],['week %i'%w for w in range(10)])

plt.autoscale(tight=True)

plt.grid()

plt.show()

对于上下文,x是对应于一小时的整数数组. y是在特定时间内的“命中”(从用户到网站)的数组.

我知道代码累积了所有的时间,以便它可以在一个星期内显示,但有人可以解释这些功能做什么?我的目标是了解这一行的所有语法:

plt.xticks([w*7*24 for w in range(10)],['week %i'%w for w in range(10)])

特别:

>什么是范围?

这是生成的:

以下是附加上下文的示例数据:

1 2272

2 nan

3 1386

4 1365

5 1488

6 1337

7 1883

8 2283

9 1335

10 1025

11 1139

12 1477

13 1203

14 1311

15 1299

16 1494

17 1159

18 1365

19 1272

20 1246

21 1071

22 1876

23 nan

24 1410

25 925

26 1533

27 2104

28 2113

29 1993

30 1045

你可能感兴趣的:(python,xticks)