Skip to content

Commit

Permalink
Add my notes
Browse files Browse the repository at this point in the history
  • Loading branch information
holtzy committed Jul 17, 2018
1 parent 083404a commit cf1f416
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions create_template_tuto.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#Tutorial on:
#http://ismayc.github.io/ecots2k16/template_pkg/

# Set working directory
setwd("~/Dropbox/YH_template/")

# Need devtools
library(devtools)

# Create my template!
#devtools::create("yhPersoTemplate")

# Create skeleton directory
#dir.create("yhPersoTemplate/inst/rmarkdown/templates/report/skeleton", recursive = TRUE)

# Create skeleton.rmd file
# Create .yaml file

# install package:
remove.packages("epuRate")
devtools::install("epuRate")
library(epuRate)









# Call the library from Github?
library(devtools)
remove.packages("epuRate")
install_github("holtzy/epuRate", force=TRUE)
library(epuRate)














0 comments on commit cf1f416

Please sign in to comment.