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")
)
Data file path.
Subset the `Type` column.
Subset the `Language` column.
Subset the `Role` column.
Formatted data.
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_