This function takes number of FTE and annual $/FTE and determines labor cost
Examples
laborcost <- solvecost_labor(1.5, 50000)
cost_data <- data.frame(
fte = seq(1, 10, 1)
) %>%
dplyr::mutate(costs = solvecost_labor(fte = fte, cost = .08))
This function takes number of FTE and annual $/FTE and determines labor cost
laborcost <- solvecost_labor(1.5, 50000)
cost_data <- data.frame(
fte = seq(1, 10, 1)
) %>%
dplyr::mutate(costs = solvecost_labor(fte = fte, cost = .08))