对不起这个愚蠢的问题,我是R.的新手。我有一些这样的格式化并以CSV格式保存:
%Y-%m-%d,st1,st2,st3,st4,st5,st6,st7,st8,st9,st10
2005-09-20,38.75,48.625,48.5,23.667,45.5,48.75,18.75,33.25,43.455,76.042
2005-09-21,39.482,49.3,49,23.9,46.15,50.281,18.975,34.125,44.465,78.232
...
我在R
中导入它library(fPortfolio)
Data <- readSeries(file = "data.csv", header = TRUE, sep = ",")
我想要一些描述性统计数据
library(psych)
describe(Data)
Error in x[!is.na(x[, i]), i] :
invalid or not-yet-implemented 'timeSeries' subsetting
有什么建议吗?
答案 0 :(得分:1)
tS <- dummySeries() #make quick dummy time series
describe(tS) # fails
但
newtS<-as.ts(tS)
describe(newtS) #works fine giving:
var n mean sd median trimmed mad min max range skew kurtosis se
Series 1 1 12 0.49 0.25 0.44 0.48 0.29 0.13 0.89 0.76 0.24 -1.52 0.07
Series 2 2 12 0.45 0.28 0.44 0.45 0.42 0.07 0.83 0.77 0.03 -1.74 0.08