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
どうすればこれを解決できますか?