我是R的新手,我遇到了一个问题。总的来说,我正在尝试使用ggplot2创建一个时间序列图。名为center
的数据框包含16个csv(每个都在第一行中有一个标题),我将其读入R并使用以下代码进行组合:
files<-list.files("path",pattern="*csv", full.names=T)
names(files)<-files
center<- do.call(rbind, lapply(files, read_csv))
我做了以上没有错误。
我想要分组&#34; center&#34;因为它超出了其他csv文件的时间范围。
我在下面使用了这段代码,当我查看子集数据时,它包含了我想要的参数之外的日期值:
center_sub <- subset (center,
center$rtime >= "2016-10-28 12:40:00",
tz = "America/New_York"&
center$rtime <= "2017-02-14 06:30:00",
tz = "America/New_York")
我确实从R studio收到任何错误,但当我view(center_sub)
时,它的参数之外的日期更多。=
我不确定为什么包括其他日期,任何形式的帮助都将受到赞赏。谢谢你