我正在尝试更改R基本图中的unicode符号的背景颜色。这是一个例子:
plot(x, y, pch = -as.hexmode("2603"), main = "Corte 1", cex = 3, bg = "purple", col = "black")
我试图使用bg
命令更改背景颜色,但它仅适用于"正常" pch
个符号。你知道是否有可能吗?感谢
答案 0 :(得分:-1)
par(bg="purple")
plot(x, y, pch = -as.hexmode("2603"), main = "Corte 1", cex = 3, col = "black")
如果您想要更多控制权,请检查this answer