R交互图不显示图形

R interaction plot not showing the graph

我试图获得互动 plot.my 代码是,

hours=c(16.5,11.8,12.3,16.6,21.4,17.3,16.9,21.0)
facA=factor(rep(c(1,2),c(4,4)))
facB=factor(rep(gl(4,2),1))
interaction.plot(facA, facB, hours)

这就是我得到的输出。

任何人都可以帮我弄清楚我的代码有什么问题吗?谢谢。

经过我的尝试,facB=factor(rep(gl(4,1),2))成功了。