Installs helpful packages and functions in R.
Loads important libraries and sets working directory to be the path in which the script is located.
############ BOILERPLATE FOR SETTING UP AN ENVIRONMENT #############
########## COPY AND PASTE IN THE BEGINING OF YOUR SCRIPT ###########
######## CLEARS ENVIRNOMENT AND LOADS IMPORTANT LIBRARIES ##########
rm(list = ls())#####################################################
if (!require("devtools")) {#########################################
install.packages("devtools", dependencies = TRUE)#################
}###################################################################
if (!require("QuickEnvironment")) {#################################
devtools::install_github("DejanDraschkow/QuickEnvironment")#######
}###################################################################
QuickEnvironment::InstallUsefulPackages()###########################
####################################################################
############ SET SCRIPT PATH TO BE WORKING DIRECTORY ###############
setwd(dirname(rstudioapi::getActiveDocumentContext()$path))#########
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.