如何在R图中更改Unicodes符号的背景颜色?

时间:2018-06-07 16:36:22

标签: r plot

我正在尝试更改R基本图中的unicode符号的背景颜色。这是一个例子:

plot(x, y,  pch = -as.hexmode("2603"), main = "Corte 1", cex = 3, bg = "purple", col = "black")

我试图使用bg命令更改背景颜色,但它仅适用于"正常" pch个符号。你知道是否有可能吗?感谢

1 个答案:

答案 0 :(得分:-1)

par(bg="purple")
plot(x, y,  pch = -as.hexmode("2603"), main = "Corte 1", cex = 3, col = "black")

如果您想要更多控制权,请检查this answer