我想在 R 中制作椭圆。代码如下:
library(car)
A <- matrix(c(2.2, 0.4, 0.4, 2.8), nrow=2)
ellipse(c(0, 0), shape=A, radius=0.98, col="red", lty=2)
但是此代码会产生以下错误:
Error in plot.xy(xy.coords(x, y), type = type, ...) :
plot.new has not been called yet
我该如何解决这个问题?