R语言查看数据对象的信息函数:ls函数查看工作空间中的数据对象、str函数查看结构、names函数查看名称、class函数查看数据类型、dim函数查看维度、head函数查看前几条、tail函数查看后面 仿真数据 y <- 'this is a test string of r' y # create a data frame from scratch age <- c(25, 30, 56) gender...