我有一些数据:
> (dput(head(data$Date,10)))
c("18.12.2003", "06.04.2005", "06.04.2005", "07.04.2005", "27.05.2005",
"16.06.2009", "16.06.2009", "21.12.2009", "22.12.2009", "09.06.2011"
)
[1] "18.12.2003" "06.04.2005" "06.04.2005" "07.04.2005" "27.05.2005"
[6] "16.06.2009" "16.06.2009" "21.12.2009" "22.12.2009" "09.06.2011"
> (dput(head(data$Art,10)))
c("V", "K", "K", "K", "Zuteilung", "V", "K", "K", "K", "V")
[1] "V" "K" "K" "K" "Zuteilung" "V"
[7] "K" "K" "K" "V"
正如您所看到的,每个日期都有一个字符串值。
我可以使用:
衡量K
的所有字符串值
> (length(grep("K", data$Art)))
我想用相同的日期绘制K的所有频率。
有了这个我可以绘制所有日期,但是这不包括K
字符串。
hist(as.Art(data$Date, '%d.%m.%Y'), breaks="days", freq=TRUE)
我非常感谢你的回答!