Skip to content

Instantly share code, notes, and snippets.

@ayoskovich
Created November 9, 2021 16:21
Show Gist options
  • Save ayoskovich/45e2613b636cd4d7165947405baab008 to your computer and use it in GitHub Desktop.
Save ayoskovich/45e2613b636cd4d7165947405baab008 to your computer and use it in GitHub Desktop.
Style facets in ggplot
theme_bw()+
theme(
axis.ticks = element_blank(),
axis.text = element_text(color='black'),
legend.position = 'none',
strip.text.y.left = element_text(angle = 0, face = 'bold'),
strip.text.x = element_text(face='bold'),
strip.placement = 'outside',
strip.background = element_rect(fill='white', linetype = 'blank')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment