top of page
  • Writer's picture♫Shokolatte♬

Today's Visualization (R)


using R with ggplot2




ggplot(mc_responses_reordered %>%
         filter(!is.na(WorkInternalVsExternalTools)), aes(x = fct_rev(WorkInternalVsExternalTools))) +
  geom_bar(fill = "blue") +
  coord_flip() +
  labs(x = "Tools at Work", y = NULL)




ggplot(responses_1f, aes(fct_rev(fct_infreq(EmployerIndustry)), fill = EmployerIndustry)) + 
  geom_bar(show.legend = F) + 
  coord_flip() +
  scale_y_log10() +
  labs(title = "Kaggle Data Science Survey 2007 Employer Industry", x = "Industry", y = NULL, caption = "...color doesn't mean sh!t 🙈")




I feel embarrassed but just for the record.




4 views0 comments

Recent Posts

See All
bottom of page