Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

faceted bar chart in r

ggplot(data, aes(x = x)) +
	geom_bar()
    facet_wrap(~y) #Could be read as broken down by "y"
 
PREVIOUS NEXT
Tagged: #faceted #bar #chart
ADD COMMENT
Topic
Name
7+8 =