author: Kelly O'Briant date: PhUSE 2019 font-family: 'Helvetica' autosize: true
- Access
- Understand
- Communicate
R is an open source programming language for statistical computing
RStudio provides open source and enterprise-ready professional software for data science
- The artifacts through which you communicate, share and provide access to your ideas and analyses
- Reports, Visualizations, Applications, Services, Dashboards
- Data Storytelling Devices
--
"It doesn't matter how great your analysis is unless you can explain it to others: you need to communicate your results."
R is supported by a rich ecosystem of open source packages
- Work that I'm proud to show off
- Communication with excellent user experience
library(ggplot2)
irisinfo <- ggplot(iris, aes_string(x = "Sepal.Length", fill = "Species")) +
geom_histogram(data = iris[,-5], fill = "grey", alpha = .5) +
geom_histogram(colour = "black") +
facet_wrap(~ Species) +
guides(fill = FALSE) +
theme_bw()
The latest in "Sepal Length" news
- Community - rstd.io/community
- Twitter - rstd.io/twitter
- Webinars - resources.rstudio.com
- Solutions - solutions.rstudio.com