Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I created a package with plenty of functions that generate ggplot plots.

At the beginning, I used the default theme for all my plot functions (grey theme) but then I found the black and white theme to be more pleasant to the eye and developed my latest plot functions using that theme.

Is there a way to set the ggplot2 theme globally, i.e. in one place, without having to modify all my plot functions each time I find a new theme I want to apply to all my plots?

See Question&Answers more detail:os

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

1 Answer

here you go, you should attach the package again

 library(ggplot2); theme_set(theme_bw())

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...