运行绘图代码时出现以下错误:Error in xy.coords(x, y, xlabel, ylabel, log) : 'x' and 'y' lengths differ
。我的数据集中有很多NA
个,据我所知导致了这个问题。任何想法:
我查看了这里发布的一些类似问题,但遗憾的是无法理解它。不用说,我是R的新手。
df <- read.dta("r12.dta")
attach(df)
model1 <- lm(rent~I(income^2)+income*races)
fitted(model1)
layout(matrix(1:4,2,2))
plot(model1)
plot(income, fitted(model1), xlab="Income", ylab="Rent",
main="Fitted Values for Black Rent",type="l")
答案 0 :(得分:1)
lm
对象包含变量(已移除NA
)作为名为model
的元素中的数据框。因此,您可以从那里提取相关的income
变量以在您的图中使用:
plot(model1$model$income, fitted(model1), xlab="Income", ylab="Rent",
main="Fitted Values for Black Rent", type="l")