README.md

QuickEnvironment

Installs helpful packages and functions in R.

Boilerplate: Copy-paste this into the beginning of your r script

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))#########

Use cases



DejanDraschkow/QuickEnvironment documentation built on Jan. 3, 2021, 4:54 a.m.