我用read.table将txt文件读入dataframe,我想时间 原始名称和time属性未更改
ul <- read.table("d:/work/R/202b.txt", header=TRUE, sep="\t", row.names=1)
像这样的ul
DIS F TOTAL X y
13:20:13 493.1259 0.36044 22422.43 0 NA
13:20:15 493.7804 0.36091 22422.68 0 NA
.
14:20:13 404.17580 0.29542 22869.23 0 NA
14:20:15 402.21930 0.29399 22869.50 0 NA .
我想得到ul [14:20:13,3] 它没有得到22869它得到了
[1] 22425.95 22425.62
Warning message:
In 14:20:13 : numerical expression has 7 elements: only the first used
如何使时间序列成为行名,就像R知道它一样