Visualization
Learn how to visualize data with ggplot2.
1-2 hours per week, for 8 weeks
Learn
Quiz
When is a heatmap useful?
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Write ggplot2 code to render a bar chart
data(mtcars)
library(ggplot2)
ggplot(mtcars,aes(mpg,hp))+geom_point()