更改 Base R 中饼图中标签和刻度线的颜色

问题描述 投票:0回答:1

我有一个饼图:

x <- c(30, 70)
pie(x)

我希望标签为红色,刻度线为红色或透明。我该怎么做?

xaxt = "n"
col.axis = "red"
似乎没有效果。

pie(x, xaxt = "n", col.axis = "red")
r pie-chart axis-labels
1个回答
1
投票

您可以通过首先设置

col
图形参数来更改刻度和标签的颜色:

opar <- par(col="red")
pie(x)

enter image description here

然后将颜色重置为之前的设置:

par(opar)
© www.soinside.com 2019 - 2024. All rights reserved.