Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
242 views
in Technique[技术] by (71.8m points)

r - how to attribute colors to factor levels in ggplot2

usually I use +scale_color/fill_continuous(values=c("blue","red")) but here I need to do several plots where some levels does not change, so I wondered if there where a way to do something like :

+scale_color/fill_continuous(values=c("A":"blue","B":"red"))

The idea is to save to a level a specific color that will never change.

question from:https://stackoverflow.com/questions/65907276/how-to-attribute-colors-to-factor-levels-in-ggplot2

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You might want to assign this before you plot the data.

E.g., make a column in your dataframe with the name of the color (or color value), and use dplyr::case_when to conditionally assign the color based on some condition.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...