MGinorio
3/3/2021
Exploratory Visualizations
Purpose
Explanatory Visualizations
They are Part of the Communication Process
Best way to create a great Explanatory Vis is to always think about the Audience First
R Markdown allows to easily format your text. You can add links, write in bold or italic check the R studio cheatsheet.
# R Markdown allows to easily format your text. You can add [links](https://sps.cuny.edu/), write in **bold** or *italic*.
\(A = (\pi * \lambda \times r^{4}) / \alpha\)
you can Display 2 plots one beside each other.
r out.width=c(‘50%’, ‘50%’), fig.show=‘hold’
The prettydoc package provides an alternative engine, html_pretty, to knit your R Markdown document into pretty HTML pages. Its usage is extremely easy: simply replace the ‘rmarkdown::html_document’ or ‘rmarkdown::html_vignette’ output engine by ‘prettydoc::html_pretty’ in your R Markdown header, and use one of the built-in themes and syntax highlighters. For example