我有一个功能,可以给我一年的地震摘要统计数据:
我有1900年至2007年的地震数据。如何使用ddply
函数向我提供所有年份的摘要统计信息?我正在运行它,但它没有做任何事情。
allmags <- ddply(.data = quakes, .variables = year, .fun = quake_summary)
答案 0 :(得分:0)
您可以尝试以下代码:
allmags <- ddply(quakes, .(year), function(x) summary(x))