我想知道是否有一种方法可以以“解释器可读”的方式打印对象,它会做这样的事情:
> x <- c(1:5,8)
> print.ir(x)
c(1,2,3,4,5,8)
> x <- matrix(1:4, ncol=2)
> print.ir(x)
matrix(c(1,2,3,4), ncol=2, nrow=2)
这样可以将结果复制粘贴到 R 脚本或另一个 R session 中。
最佳答案
为此使用 dput()
:
x <- c(1:5,8)
dput(x)
c(1, 2, 3, 4, 5, 8)
x <- matrix(1:4, ncol=2)
dput(x)
structure(1:4, .Dim = c(2L, 2L))
尝试一下:
z <- structure(1:4, .Dim = c(2L, 2L))
z
[,1] [,2]
[1,] 1 3
[2,] 2 4
关于r - “interpreter readable” 打印(在 R 中),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14260826/