mitchelloharawild / Vitae

R Markdown Résumés and CVs

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Vitae

Tweetbotornot
🤖 R package for detecting Twitter bots via machine learning
Stars: ✭ 355 (-43.38%)
Mutual labels:  r-package, rstats
Visdat
Preliminary Exploratory Visualisation of Data
Stars: ✭ 377 (-39.87%)
Mutual labels:  r-package, rstats
Assertr
Assertive programming for R analysis pipelines
Stars: ✭ 355 (-43.38%)
Mutual labels:  r-package, rstats
Simple Resume Cv
Template for a simple resume or curriculum vitae (CV), in XeLaTeX.
Stars: ✭ 333 (-46.89%)
Mutual labels:  resume, cv
Shinyjs
💡 Easily improve the user experience of your Shiny apps in seconds
Stars: ✭ 566 (-9.73%)
Mutual labels:  r-package, rstats
Pdftools
Text Extraction, Rendering and Converting of PDF Documents
Stars: ✭ 349 (-44.34%)
Mutual labels:  r-package, rstats
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (-42.26%)
Mutual labels:  r-package, rstats
Rplos
R client for the PLoS Journals API
Stars: ✭ 289 (-53.91%)
Mutual labels:  r-package, rstats
Gtsummary
Presentation-Ready Data Summary and Analytic Result Tables
Stars: ✭ 450 (-28.23%)
Mutual labels:  r-package, rstats
Metaflow
🚀 Build and manage real-life data science projects with ease!
Stars: ✭ 5,108 (+714.67%)
Mutual labels:  r-package, rstats
Ggextra
📊 Add marginal histograms to ggplot2, and more ggplot2 enhancements
Stars: ✭ 299 (-52.31%)
Mutual labels:  r-package, rstats
Resume
👾 My resume / 我的简历
Stars: ✭ 482 (-23.13%)
Mutual labels:  resume, cv
Targets
Function-oriented Make-like declarative workflows for R
Stars: ✭ 293 (-53.27%)
Mutual labels:  r-package, rstats
Stplanr
Sustainable transport planning with R
Stars: ✭ 352 (-43.86%)
Mutual labels:  r-package, rstats
Rhub
R-hub API client
Stars: ✭ 292 (-53.43%)
Mutual labels:  r-package, rstats
Magick
Magic, madness, heaven, sin
Stars: ✭ 362 (-42.26%)
Mutual labels:  r-package, rstats
Rnoaa
R interface to many NOAA data APIs
Stars: ✭ 278 (-55.66%)
Mutual labels:  r-package, rstats
Ggpointdensity
📈 📊 Introduces geom_pointdensity(): A Cross Between a Scatter Plot and a 2D Density Plot.
Stars: ✭ 286 (-54.39%)
Mutual labels:  r-package, rstats
Tabulizer
Bindings for Tabula PDF Table Extractor Library
Stars: ✭ 413 (-34.13%)
Mutual labels:  r-package, rstats
Timevis
📅 Create interactive timeline visualizations in R
Stars: ✭ 470 (-25.04%)
Mutual labels:  r-package, rstats

vitae

/ˈviːteɪ/

CRAN status Check status Lifecycle: maturing Downloads

Templates and tools for making a Résumé/CV

The vitae package makes creating and maintaining a Résumé or CV with R Markdown simple. It provides a collection of LaTeX and HTML templates, with helpful functions to add content to the documents. There are currently 6 templates available in this package:

vitae::awesomecv vitae::hyndman
Preview of awesomecv Preview of hyndman
vitae::latexcv vitae::markdowncv
Preview of latexcv Preview of markdowncv
vitae::moderncv vitae::twentyseconds
Preview of moderncv Preview of twentyseconds

Installation

You can install the release version from CRAN.

install.packages('vitae')

You can install the development version from GitHub.

# install.packages("devtools")
devtools::install_github("mitchelloharawild/vitae")

This package requires LaTeX to be installed on your computer. If you’re encountering issues, please check that LaTeX is installed. The tinytex package makes it easy to setup LaTeX within R:

install.packages('tinytex')
tinytex::install_tinytex()

Getting started

The vitae package currently supports 6 popular CV templates, and adding more is a relatively simple process (details in the creating vitae templates vignette).

Creating a new CV with vitae can be done using the RStudio R Markdown template selector:

These templates leverage the strength of rmarkdown to include common information in the YAML header (name, position, social links…) and extended information in the main body. The main body of the CV is written using markdown, and allows for data-driven generation of entries using the *_entries functions. This allows you to import your working history from other sources (such as ORCID, Google Scholar, or a maintained dataset), and include them programmatically into your CV.

For example, the rorcid package can be used to extract Rob Hyndman’s education history:

orcid_data <- do.call("rbind",
  rorcid::orcid_educations("0000-0002-2140-5352")$`0000-0002-2140-5352`$`affiliation-group`$summaries
)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
#>    education-summary.role-title education-summary.start-date.year.value
#> 1                           PhD                                    1990
#> 2 Bachelor of Science (Honours)                                    1985
#>   education-summary.end-date.year.value education-summary.organization.name
#> 1                                  1992             University of Melbourne
#> 2                                  1988             University of Melbourne
#>   education-summary.organization.address.city
#> 1                                   Melbourne
#> 2                                   Melbourne

The package provides two types of entries from data, which are detailed_entries and brief_entries. Both functions provide sections for what, when, and with, and the detailed_entries additionally supports where and why. These arguments support operations, so for this example, we have used glue to combine the start and end years for our when input. Excluding any inputs is also okay (as is done for why), it will just be left blank in the CV.

orcid_data %>%
  detailed_entries(
    what = `education-summary.role-title`,
    when = glue::glue("{`education-summary.start-date.year.value`} - {`education-summary.end-date.year.value`}"),
    with = `education-summary.organization.name`,
    where = `education-summary.organization.address.city`
  )

Additional examples of using this package can be found in the slides presented at ozunconf2018: https://slides.mitchelloharawild.com/vitae/

Examples of using vitae

Add your vitae to the list using a PR.


Please note that the ‘vitae’ project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

The vitae project began as at rOpenSci’s OzUnconf 2018. A big thank you to rOpenSci and the event organisers for their work, which has played a big role in the formation of this package.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].