Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个向量 J。
如果我打印 J,则如下所示:
> print (j) j 6
现在我只想访问 6。
我已经试过了
j[1]
和
j [ ,1]
但无济于事。
我知道这很简单,但是有人可以帮助我吗?
编辑:我猜 J 会是一个向量,因为我是通过在向量 k 上使用 tail (k,1) 得到的。还能是什么类型?
j只是与 6 相关联的名称。
j
j = c(j=6) > j j 6
即使它有名称,您仍然可以使用jas 。6
6
> j + 6 j 12 > j + 6 ==12 j TRUE
您可以通过以下方式摆脱讨厌的名称:
> names(j) = NULL > j [1] 6