在R语言中,`structure()`函数通常用于修改向量的维度。例如,如果有一个向量`a <- c(1:10)`,它只是一个一维的1到10的序列。通过使用`structure(a, dim = c(2, 5))`,可以将向量`a`转换为一个2行5列的矩阵`b`。实际上,`structure()`函数不仅仅用于定义矩阵的维度。它还可以为对象定义其他属性,如"di...
R语言使用str函数查看数据对象的结构(structure)、以dataframe为例输出、样本个数、变量个数、变量数据类型、示例数据 str(mydata) str(age) str(gender) > str(mydata)'data.frame': 3 obs. of 3 variables: $ age : num 25 30 56 $ gender: chr "male" "female" "male" $ weight: num...
R语言使用str函数查看数据对象的结构(structure)、以dataframe为例输出、样本个数、变量个数、变量数据类型、示例数据 仿真数据 y <- 'this is a test string of r' y # create a data frame from scratch age <- c(25, 30, 56) gender <- c("male", "female", "male") weight <- c(160,...