2

我有一个数据形式为:

month  price  name
1       200   xyz
1       300   abc
2       500   xyz
3       300   abc
4       400   cde
5       200   cde
5       100   abc
5       200   xyz

我想按月创建累积总和图。任何人都可以帮我吗?

4

1 回答 1

2

尝试:

ts.plot(cumsum(as.vector(unlist(tapply(df$price,df$month,sum)))),
        main="cumulative month wise",
        xlab="month",ylab="cumulative",lty=3,col="purple",type="o")
于 2013-02-13T12:35:56.520 回答