我想使用 jsonlite 从 json 文件导入 R 中的矩阵列表。
A <- matrix(rnorm(100),10,10)
B <- matrix(rnorm(100),10,10)
C <- matrix(rnorm(100),10,10)
l <- list(A,B,C)
import_l <- fromJSON(toJSON(l),simplifyMatrix = FALSE)
上面的代码不起作用,因为它在 R 内部是一个数字列表。但是,我想要我的列表A,B,C
,即l
. 有没有办法使用 jsonlite 取回正确的矩阵列表?