Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

same plots for every variable together

library(ggplot2)
library(dplyr)
gather(interested_var_cat) %>% ggplot(aes(value)) + geom_bar(col ="dark red", fill = "dark red", alpha = 0.7) + facet_wrap("key", scales = "free")
 
PREVIOUS NEXT
Tagged: #plots #variable
ADD COMMENT
Topic
Name
9+4 =