处理NA的xy.coords出错

时间:2014-02-25 20:51:23

标签: r plot na variable-length

运行绘图代码时出现以下错误:Error in xy.coords(x, y, xlabel, ylabel, log) : 'x' and 'y' lengths differ。我的数据集中有很多NA个,据我所知导致了这个问题。任何想法:

  1. 如何处理R中的N和
  2. 如何确保我可以绘制不同长度的变量图?
  3. 我查看了这里发布的一些类似问题,但遗憾的是无法理解它。不用说,我是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")
    

1 个答案:

答案 0 :(得分:1)

lm对象包含变量(已移除NA)作为名为model的元素中的数据框。因此,您可以从那里提取相关的income变量以在您的图中使用:

plot(model1$model$income, fitted(model1), xlab="Income", ylab="Rent",
  main="Fitted Values for Black  Rent", type="l")