0

我正在尝试在 R 中使用 ipairs 包,并且在制作图像散点图时遇到了一些问题。我的数据集最初有大约 80 列,但我认为这是导致问题的原因,将其减少到 49 列。在此之后我仍然收到错误。下面是我的代码:

> length(names(ameshouse))
[1] 49

> ameshouse $SalePrice <- as.factor(ameshouse $SalePrice)
> zmax <- ipairs(ameshouse, pixs=.5, main="Ames Housing")

Error in layout(lom, widths = c(rep(1, nc), d.legend, w.legend), heights = c(h.main, : 
  too many rows in layout, limit 50

数据集确实有大约 2900 行,但肯定不是问题,任何人有任何建议或可能有其他优于 ipairs 的包?

先谢谢了。

4

1 回答 1

1

通过反复试验,我发现问题出在列数上。对于遇到相同问题的任何人,最大列数为 21。

于 2012-11-17T06:41:03.147 回答