View source: R/calc_hmw_functions.R
| calc_hmw_primary_energy | R Documentation |
Calculate the primary energy consumed by human workers
calc_hmw_primary_energy(
.df,
year = MWTools::mw_cols$year,
unit = MWTools::mw_cols$unit,
exemplar_method_col = MWTools::mw_constants$exemplar_method_col,
hmw_analysis_data_path = MWTools::hmw_analysis_data_path(),
hmw_harvest_waste_sheet = MWTools::hmw_analysis_constants$hmw_harvest_waste_sheet,
final_energy_col = MWTools::hmw_analysis_constants$final_energy_col,
primary_energy_col = MWTools::hmw_analysis_constants$primary_energy_col,
hmw_harvest_waste_col = MWTools::hmw_analysis_constants$hmw_harvest_waste_col,
hmw_region_code_col = MWTools::conc_cols$hmw_region_code_col
)
.df |
A data frame containing the final energy consumed by human
workers.
Usually produced by calling the
|
year, unit, exemplar_method_col |
See |
hmw_analysis_data_path, hmw_harvest_waste_sheet, final_energy_col, primary_energy_col, hmw_harvest_waste_col |
See |
hmw_region_code_col |
See |
ilo_working_hours_data <- read.csv(file = MWTools::ilo_working_hours_test_data_path())
ilo_employment_data <- read.csv(file = MWTools::ilo_employment_test_data_path())
hmw_data <- prepareRawILOData(ilo_working_hours_data = ilo_working_hours_data,
ilo_employment_data = ilo_employment_data)
primary_energy_data <- hmw_data |>
add_hmw_region_codes() |>
fill_ilo_data() |>
calc_total_hours_worked() |>
get_broad.sector_data() |>
split_labor_by_sector() |>
calc_hmw_final_energy() |>
calc_hmw_primary_energy()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.