使用dplyr进行分组和转置

时间:2019-01-21 03:29:48

标签: r dplyr tidyverse finance

我有一个财务数据集。

outlineViewSelectionDidChange

dplyr中是否有一种按日期对数据帧进行分组的快速方法,因此data.frame具有列名c(日期,值,ROE,EPS),并且看起来像这样。

dat = data.frame(Fundemental = rep(c("EPS", "ROE"), 2), 
Dates = c("2019-01-01", "2019-01-01", "2019-02-02", "2019-02-02"), 
Value = rnorm(4))
##
   Fundemental      Dates      Value
 1         EPS 2019-01-01  2.0685114
 2         ROE 2019-01-01 -0.4700701
 3         EPS 2019-02-02  0.3254684
 4         ROE 2019-02-02 -0.6270476

我使用Map函数编写了一些代码,但是我真的觉得它已经死了!预先感谢。

0 个答案:

没有答案