仅在一列中突出显示 >= 5 条,geom_col(),R
Highlight bars >= 5 in one column only, geom_col(), R
我使用 ggplot geom_col 创建了以下列图并突出显示 >= 5 的列。目标是仅突出显示结构列中 >= 5 的值,而其他列不突出显示。
数据框 FC_TS 有三列:Last Name
、Feature
、Value
出于数据保护原因我无法发布。 Feature
可以是 Action,Flexibility_Thinking,Reflection,Structure 和 Value 可以是 1-7。 level_order 仅更改功能的原始顺序。
这是我到目前为止的代码,请帮忙!
TS_bar <-
ggplot(FC_TS, aes(x = factor(Feature, level = level_order), y = Value, colour = Value >= 5)) +
scale_colour_manual(name = 'High Structure', values = setNames(c('red', NA),c(T, F))) + geom_col(aes(fill = `Last Name`), position = "dodge") + coord_cartesian(ylim = c(1, 7)) + scale_y_continuous(n.breaks = 7) + theme_bw()
尝试:
ggplot(FC_TS, aes(x = factor(Feature, level = level_order), y = Value, colour = (Value >= 5 & Feature == “Structure”)))
我使用 ggplot geom_col 创建了以下列图并突出显示 >= 5 的列。目标是仅突出显示结构列中 >= 5 的值,而其他列不突出显示。
数据框 FC_TS 有三列:Last Name
、Feature
、Value
出于数据保护原因我无法发布。 Feature
可以是 Action,Flexibility_Thinking,Reflection,Structure 和 Value 可以是 1-7。 level_order 仅更改功能的原始顺序。
这是我到目前为止的代码,请帮忙!
TS_bar <-
ggplot(FC_TS, aes(x = factor(Feature, level = level_order), y = Value, colour = Value >= 5)) +
scale_colour_manual(name = 'High Structure', values = setNames(c('red', NA),c(T, F))) + geom_col(aes(fill = `Last Name`), position = "dodge") + coord_cartesian(ylim = c(1, 7)) + scale_y_continuous(n.breaks = 7) + theme_bw()
尝试:
ggplot(FC_TS, aes(x = factor(Feature, level = level_order), y = Value, colour = (Value >= 5 & Feature == “Structure”)))