2020-08-13 12:00:20 +02:00
|
|
|
|
---
|
|
|
|
|
id: 5e46f802ac417301a38fb92b
|
2021-07-15 13:04:11 +05:30
|
|
|
|
title: 页面访问量的时间序列可视化工具
|
2020-08-13 12:00:20 +02:00
|
|
|
|
challengeType: 10
|
2021-07-15 13:04:11 +05:30
|
|
|
|
forumTopicId: 462369
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: page-view-time-series-visualizer
|
2020-08-13 12:00:20 +02:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
|
|
|
|
|
2021-07-15 13:04:11 +05:30
|
|
|
|
对于这个项目,你将使用线图、条形图和箱形图对时间序列数据进行可视化。 你将要使用 Pandas、matplotlib 和 seaborn 来对数据集进行可视化,这个数据集包含从 2016-05-09 到 2019-12-03 每一天在 freeCodeCamp.org 论坛的页面访问量。 这个数据可视化将帮助你了解访问的模式,并且显示年增长和月增长情况。
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2021-07-15 13:04:11 +05:30
|
|
|
|
你可以 [在 Replit 上查看整个项目的具体描述和初始代码](https://replit.com/github/freeCodeCamp/boilerplate-page-view-time-series-visualizer)。
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2021-07-15 13:04:11 +05:30
|
|
|
|
点击此链接,fork 这个项目。 一旦你根据 “README.md” 中的说明完成项目,请提交你的项目到下面的链接。
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2021-07-15 13:04:11 +05:30
|
|
|
|
我们仍在开发 Python 数据分析课程的交互式课程部分。 现在,你将需要使用其他资源来学习如何通过这一挑战。
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2021-07-15 13:04:11 +05:30
|
|
|
|
它应该通过所有的 Python 测试。
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
2020-08-13 12:00:20 +02:00
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```py
|
|
|
|
|
# Python challenges don't need solutions,
|
|
|
|
|
# because they would need to be tested against a full working project.
|
|
|
|
|
# Please check our contributing guidelines to learn more.
|
|
|
|
|
```
|