R:列表中的值未报告为向量c(1,2),而是转换为1:2

时间:2017-01-13 16:34:08

标签: r list

> typeof(rates[[5]])
[1] "list"
> typeof(rates[[6]])
[1] "list"

x <- rates[5:6]
> paste("$",x[[1]],"$",x[[2]],sep=" "); dput(x)
[1] "$ 1:2 $ c(2, 1, 1)"
list(list(1:2), list(c(2L, 1L, 1L)))

请注意我的粘贴中的费率[[5]]会发生什么变化。我不明白为什么它不采用c(1,2)格式。

编辑:

pytz

0 个答案:

没有答案