我想要一个小函数显示给定数据集中每个数字变量的基本数据统计信息。到目前为止,我有以下内容:
AnalyzeNumericData <- function(x,GroupVar=NA) {
VarList <- names(x)
NumVars <- length(VarList)
for (i in (1:NumVars)) {
if (is.numeric(x[,VarList[i]])) {
par(mfrow=c(2,2))
hist(x[,VarList[i]],main=paste("Histogram of ",VarList[i]),xlab=NA)
boxplot(x[,VarList[i]],main=paste("Boxplot of ",VarList[i]))
if (!is.na(GroupVar)) {
boxplot(x[,VarList[i]]~x[,GroupVar],main=paste("Boxplot of ",VarList[i]," by ", GroupVar))
}
# Add some text to bottom right
# I've tried plot(1)
# and then text(1,"MyText"), but this only alows me to put text on one place (in the middle of the plot)
}
}
}
AnalyzeNumericData(mtcars,"cyl")
该函数将为每个数值变量创建三个图表。我想在右下角区域添加一些文本而不是第四个图表。我知道 text(),但是我必须先创建类似空图表的东西才能使用它。
任何想法表示赞赏。