knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

library(magrittr)

TalentReview

Lifecycle: experimental Codecov test coverage R-CMD-check

The goal of TalentReview is to ...

Installation

You can install TalentReview like so:

remotes::install_github("epijim/TalentFlow")

Setup

environment variables

The package expects just two environments variables, in addition to the gsheet behind the env variables. Examples are below:

TALENTREVIEW_SHEETID = gsheet_id
TALENTREVIEW_EMAIL = youremail@email.com

gsheet

This package expects a gsheet to be the input. I've put an example sheet with fake data here. By default, each time the app is started it will re-query the gsheet. The tables and variables in the gsheet are showen below.

# below is an example bypassing the environment variable
sheet_id <- Sys.getenv("TALENTREVIEW_SHEETID")

## Google sheet
googlesheets4::gs4_auth(cache = "secrets", email = Sys.getenv("TALENTREVIEW_EMAIL"))

config <- TalentReview::read_config(sheet_id)
people <- TalentReview::read_people(sheet_id)

dm::dm(
  people,
  config$grade_levels,
  config$job_levels,
  config$eoy_rating_levels
  ) %>% 
  dm::dm_draw(
    view_type = "all", 
    column_types = TRUE, rankdir = "TB"
    )

running the app

golem::run_dev()

The app

cards joblevel rating tables

Code of Conduct

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



epijim/TalentReview documentation built on Feb. 13, 2022, 4:38 p.m.