Skip to content

Commit

Permalink
feat: Add data needed for new survey chapter (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
MonikaFu committed May 16, 2024
1 parent 5f0d2f2 commit 3b8fe20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/create_interactive_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,8 @@ create_interactive_report <-
if ( length(list.files(survey_dir)) > 0) {
survey_flag <- TRUE
survey_data <- list(
summary_table = readr::read_csv(path(output_dir, "survey","summary_table.csv"), col_types = cols_only(row_tag = "c", row_label = "c", value = "d"))
summary_table = readr::read_csv(path(output_dir, "survey","summary_table.csv"), col_types = cols_only(row_tag = "c", row_label = "c", value = "d")),
climate_goals = readr::read_csv(path(output_dir, "survey","climate_goals.csv"), col_types = cols_only(climate_goal_user = "l", perc_climate_goal_peers = "d"))
)
}

Expand Down

0 comments on commit 3b8fe20

Please sign in to comment.