Rnssp R Markdown templates are being designed and released regularly. All available templates can be explored on the publicly accessible Rnssp RMD templates Github repository.
The Rnssp R package provides various utility functions to easily manage templates. One of those utility functions is the Rnssp::list_templates()
function.
First, load the Rnssp
R package:
# Load the Rnssp package
library(Rnssp)
Next, get the current list of available packages:
# List all available templates
list_templates()
To get a tabular and more detailed view of the available templates, run:
# Detailed table view of the available templates
list_templates(as.table = TRUE) %>% View()
Here’s a demo: