当 运行 Data Frame 上的 summary() 函数时,分类变量未正确汇总
Categorical variables are not properly summarized when running the summary() function on Data Frame
df <- read.csv("student-mat.csv", sep = ";")
head(df)
The Data
现在当我运行summary(df)
Expected Output
My Output
为什么我没有得到分类变量/因素的正确描述性摘要(例如,“性别”因素下两种性别的计数)。
背景资料:
操作系统:macOS High Sierra 版本 10.13.6
RStudio 版本 1.3.959
您需要将变量定义为一个因素。例如 df$sex <- as.factor(df$sex)
让我知道它是否有效:)
df <- read.csv("student-mat.csv", sep = ";")
head(df)
The Data
现在当我运行summary(df)
Expected Output
My Output
为什么我没有得到分类变量/因素的正确描述性摘要(例如,“性别”因素下两种性别的计数)。
背景资料:
操作系统:macOS High Sierra 版本 10.13.6
RStudio 版本 1.3.959
您需要将变量定义为一个因素。例如 df$sex <- as.factor(df$sex)
让我知道它是否有效:)