gpt4 book ai didi

r - 如何为 R 直方图中的特定数据条着色

转载 作者:行者123 更新时间:2023-12-04 10:49:17 24 4
gpt4 key购买 nike

如果我有一个直方图:

> hist(faithful$waiting,seq(min(faithful$waiting),max(faithful$waiting)))

和“特殊”频率列表:
> c(51, 52, 57, 59, 64)

是否可以将与这些特殊频率相对应的条形着色为与直方图的其余部分不同的颜色?

最佳答案

您可以简单地创建一个颜色向量并使用 col选项。

data(faithful)

# make sure frequencies in order and unique for the histogram call
special <- ifelse(sort(unique(faithful$waiting)) %in% c(51, 52, 57, 59, 64), "red", "white")

# same call with the 'col' option
hist(faithful$waiting,seq(min(faithful$waiting),max(faithful$waiting)), col=special)

enter image description here

关于r - 如何为 R 直方图中的特定数据条着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27295673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com