我想修改函数 Matrix::image 生成的稀疏矩阵图像的 x 和 y 轴上的名称。当我运行下面的代码时
library(Matrix)
image(CAex, axes = FALSE)
axis(side = 2,at = 1:80, labels = 1:80, las = 1,add = TRUE)
我收到以下错误消息。
Error in axis(side = 2, at = 1:80, labels = 1:80, las = 1, add = TRUE) :
plot.new has not been called yet
感谢您的帮助。