Summary

Learning R Markdown has been a great experience. Thereby, I gladly finish this course by completing this final assignment. This certificate is going to have great value in my career, and I can not wait to learn more advanced topics about Reproducible Templates.

Three things I enjoyed learning most:

  • Version control using Git.
  • Publishing websites using GitHub.
  • Applying themes on HTML documents.

Pressure dataset plot

plot(pressure)

Cars dataset table of the top 6 rows:

library(kableExtra)

kable_styling(kable(head(cars, 6)), bootstrap_options = c("striped", "hover", "condensed", "responsive"))
speed dist
4 2
4 10
7 4
7 22
8 16
9 10

Aknowledgments

Thanks to Melinda Higgins and Emory University for this awesome course.