相关疑难解决方法(0)

Python,每月和每季度汇总数据框中的每日数据

我已将数据加载到Pandas数据帧中.

例:

Date        Price
2012/12/02  141.25
2012/12/05  132.64
2012/12/06  132.11
2012/12/21  141.64                                                     
2012/12/25  143.19  
2012/12/31  139.66  
2013/01/05  145.11  
2013/01/06  145.99  
2013/01/07  145.97
2013/01/11  145.11  
2013/01/12  145.99  
2013/01/24  145.97
2013/02/23  145.11  
2013/03/24  145.99  
2013/03/28  145.97
2013/04/28  145.97
2013/05/24  145.97
2013/06/23  145.11  
2013/07/24  145.99  
2013/08/28  145.97
2013/09/28  145.97
Run Code Online (Sandbox Code Playgroud)

只有两列,一列是数据,一列是价格.

现在,如何对数据进行分组或重新采样从2013年开始到每月和每季度df?

每月:

Date        Price
2013/01/01  Monthly total
2013/02/01  Monthly total
2013/03/01  Monthly total
2013/04/01  Monthly total
2013/05/01  Monthly total
2013/06/01  Monthly total
2013/07/01  Monthly total
2013/08/01  Monthly total  
2013/09/01  Monthly total
Run Code Online (Sandbox Code Playgroud)

季刊:

Date …
Run Code Online (Sandbox Code Playgroud)

python pandas

2
推荐指数
1
解决办法
4198
查看次数

标签 统计

pandas ×1

python ×1