如何在 RStudio 的数据查看器中查看数组类型的数据?
How do I view array type data in Data Viewer in RStudio?
创建数组后运行View()
查看数据时,无法查看表格形式的数据。相反,我看到了此数据的 name、type 和 values,如屏幕截图所示。我需要做什么才能在 数据查看器面板 中查看数据?
a<-array(c('HI','all','!!'),dim = c(3,5,5))
View(a)
RStudio 中的数据查看器IDE
在 R 编程中,View()
命令将输出打印到 Data Viewer 1 面板。 数据查看器面板只兼容数据框格式的数据; 不兼容打印数组 2.
data(iris)
View(iris)
在 R 编程语言中将数组转换为矩阵后,您可以使用 View()
命令在数据查看器中显示它。例如:
a <- array(c('HI','all','!!'),dim = c(3,5,5))
View(apply(a, 3, c))
打印值
您可以使用 print()
命令将值的内容打印到控制台。
a <- array(c('HI','all','!!'),dim = c(3,5,5))
print(a)
1. Using The Data Viewer in the RStudio IDE
2。 R Language Vectors vs. Arrays vs. Lists vs. Matrices vs. Data Frames
创建数组后运行View()
查看数据时,无法查看表格形式的数据。相反,我看到了此数据的 name、type 和 values,如屏幕截图所示。我需要做什么才能在 数据查看器面板 中查看数据?
a<-array(c('HI','all','!!'),dim = c(3,5,5))
View(a)
RStudio 中的数据查看器IDE
在 R 编程中,View()
命令将输出打印到 Data Viewer 1 面板。 数据查看器面板只兼容数据框格式的数据; 不兼容打印数组 2.
data(iris)
View(iris)
在 R 编程语言中将数组转换为矩阵后,您可以使用 View()
命令在数据查看器中显示它。例如:
a <- array(c('HI','all','!!'),dim = c(3,5,5))
View(apply(a, 3, c))
打印值
您可以使用 print()
命令将值的内容打印到控制台。
a <- array(c('HI','all','!!'),dim = c(3,5,5))
print(a)
1. Using The Data Viewer in the RStudio IDE
2。 R Language Vectors vs. Arrays vs. Lists vs. Matrices vs. Data Frames