我有一个ltraj对象,我想提取一天的平均距离和一天的平均时间。日期存储为"("%d/%m/%Y %H.%M.%S")
,无论如何我只需要在同一天发生的重新定位。我试过了函数聚合:
a = aggregate(traj [[1]] $ dist,by = list(traj [[1]] $ date,"%d /%m /%Y"),FUN = mean)
我收到以下错误消息:
aggregate.data.frame(as.data.frame(x),...)中的错误: 参数必须具有相同的长度
我不知道如何忽略小时,分钟和秒钟,只考虑年,月,日。