我有一个饼图:
x <- c(30, 70) pie(x)
我希望标签为红色,刻度线为红色或透明。我该怎么做?
xaxt = "n"
col.axis = "red"
pie(x, xaxt = "n", col.axis = "red")
您可以通过首先设置
col
opar <- par(col="red") pie(x)
然后将颜色重置为之前的设置:
par(opar)