pscl package of R



我在 pscl 包中运行总统选举的 xyplot 并得到错误

data(presidentialElections)
library(lattice)
xyplot(demVote ~ year | state,
       panel=panel.lines,
       ylab="Democratic Vote for President (percent)",
       xlab="Year",
       data=presidentialElections,
       scales=list(y=list(cex=.6),x=list(cex=.35)),
       strip=strip.custom(par.strip.text=list(cex=.6)))
Error:
Error in recordGraphics(drawGrob(x), list(x = x), getNamespace("grid")) :
  invalid graphics state

我是R的新用户,如果有人可以帮助我修复错误,我将不胜感激。

尝试dev.off(),然后重新运行相同的代码。

我个人使用 tinn r 在 R 中编程并发现它非常有用,您可以轻松关闭/打开 R 并且仍然发送命令行。(您甚至可以DL不同版本的R来加载不同的包)

相关内容

  • 没有找到相关文章

最新更新