Functions to compute counts from various aspects of your CV data.

n_years_experience(
  file = file.path("cv_data", "experience.csv"),
  types = "research"
)

n_tools(file = file.path("cv_data", "tools.csv"), types = NULL)

n_packages(
  file = file.path("cv_data", "tools.csv"),
  types = c("package", "web app")
)

n_webapps(file = file.path("cv_data", "tools.csv"), types = "web app")

n_websites(file = file.path("cv_data", "tools.csv"), types = "website")

n_web()

n_databases(file = file.path("cv_data", "tools.csv"), types = "database")

n_rpackages(
  file = file.path("cv_data", "tools.csv"),
  types = "package",
  languages = c("^R$", "^R,*")
)

n_publications(
  file = file.path("cv_data", "publications.csv"),
  types = "publication"
)

n_posters(file = file.path("cv_data", "publications.csv"), types = "poster")

n_talks(file = file.path("cv_data", "talks.csv"), types = NULL)

n_grants(
  file = file.path("cv_data", "grants.csv"),
  types = "grant",
  roles = c("Primary applicant", "Co-applicant")
)

Arguments

file

Data file path.

types

Subset the `Type` column.

languages

Subset the `Language` column.

roles

Subset the `Role` column.

Value

Formatted data.

Functions

  • n_years_experience(): n_

  • n_tools(): n_

  • n_packages(): n_

  • n_webapps(): n_

  • n_websites(): n_

  • n_web(): n_

  • n_databases(): n_

  • n_rpackages(): n_

  • n_publications(): n_

  • n_posters(): n_

  • n_talks(): n_

  • n_grants(): n_