我正在尝试使用R中的TSDist包来自加速度计的包含X,Y,Z数据的时间序列数据集。但是,该命令返回一个错误,指出该信息不是数字。所有值都存储为num?
TSDistances(controlnew, postnew, distance = "cor")
<simpleError in .common.ts.sanity.check(x): Series must be numeric>
[1] NA
controlnew <- as.numeric(controlnew)
Error: (list) object cannot be coerced to type 'double'
我只是想比较两个动作之间的准确性,因为它们是通过手机测量的。
谢谢!