knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>", 
  message=FALSE, 
  warning=FALSE, 
  eval=TRUE,
  fig.align='center'
)

library(dplyr)

Installation

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)

Datasets

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)


fmichelsendis/sendis documentation built on June 16, 2019, 7:30 a.m.