knitr::opts_chunk$set( collapse = TRUE, comment = "#>", message=FALSE, warning=FALSE, eval=TRUE, fig.align='center' ) library(dplyr)
To use the sendis
package you will need a working version of the R software.
In an R console, load the necessary libraries:
# First time installation # If required, download the devtools package and load it : if (system.file(package="devtools") == "") install.packages("devtools") library(devtools) # Install and load the latest development version from GitHub: if (system.file(package="sendis") == "") devtools::install_github("fmichelsendis/sendis") library(sendis)
You now have a series of datasets available. Try exploring them :
knitr::kable(head(calcs))
You can try to plot a pre-defined plot with one of the plot functions :
df<-filter(sendis, INST=="NEA", VER!="2.2") sendis::plot_cumulchi(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.