-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
48 lines (48 loc) · 2.04 KB
/
.Rhistory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
devtools::install_github("nstrayer/datadrivencv")
install.packages("iconr")
devtools::install_github("nstrayer/datadrivencv")
devtools::install_github("nstrayer/datadrivencv")
devtools::install_github('ropenscilabs/icon')
devtools::install_github("nstrayer/datadrivencv")
devtools::install_github("nstrayer/datadrivencv")
devtools::install_github("nstrayer/datadrivencv")
install.packages("ICON")
devtools::install_github('ropenscilabs/icon')
devtools::install_github('ropenscilabs/icon',force = TRUE)
remotes::install_github('mitchelloharawild/[email protected]')
devtools::install_github("nstrayer/datadrivencv")
library(googlesheets4)
datadrivencv::use_datadriven_cv(
full_name = "Marcus Antonio Cardoso Ramalho",
data_location = "https://docs.google.com/spreadsheets/d/1zPVICSel5EB9M6d8bhhpVpBk5kDIrX_u8HDScEa-oYg/edit?usp=sharing",
pdf_location = "https://github.com/nextmarte/curriculo/raw/master/Marcus_Ramalho_strayer_cv.pdf",
html_location = "https://github.com/nextmarte/Marcus_Ramalho_CV.github.io/",
source_location = "https://github.com/nextmarte/curriculo"
)
# This script builds both the HTML and PDF versions of your CV
# If you wanted to speed up rendering for googlesheets driven CVs you could use
# this script to cache a version of the CV_Printer class with data already
# loaded and load the cached version in the .Rmd instead of re-fetching it twice
# for the HTML and PDF rendering. This exercise is left to the reader.
# Knit the HTML version
rmarkdown::render("cv.rmd",
params = list(pdf_mode = FALSE),
output_file = "cv.html")
# Knit the HTML version
rmarkdown::render("cv.rmd",
params = list(pdf_mode = FALSE),
output_file = "cv.html")
library(googlesheets4)
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(googlesheets4)
library(magrittr) # For the pipe
source("cv_printing_functions.r")
# Read in all data and initialize a CV printer object
CV <- create_CV_object(
data_location = "https://docs.google.com/spreadsheets/d/1zPVICSel5EB9M6d8bhhpVpBk5kDIrX_u8HDScEa-oYg/edit?usp=sharing",
pdf_mode = params$pdf_mode
)
remove.packages("googlesheets4")