Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QA output doc #80

Merged
merged 9 commits into from
Jan 24, 2024
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ temp/
*.rda
exploratory_scripts/
docs/
docs/summary_qa.html
151 changes: 102 additions & 49 deletions R/frequency-tables.R

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion R/ingest.R
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ get_all_waves <- function(mode = c("api", "file")) {
tidy_colnames() %>%
rename_cols() %>%
apply_skip_logic() %>%
clean_departments() %>%
clean_data() %>%
derive_vars()
data$year <- 2023

Expand Down
11 changes: 10 additions & 1 deletion man/calculate_freqs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion man/calculate_multi_table_freqs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_ability_change.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_access_git.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_all.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_cap_change_by_freq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/summarise_cap_change_by_line_manage.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_code_freq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_coding_practices.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion man/summarise_coding_tools.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_doc.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_languages_by_prof.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_rap_champ_status.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_rap_comp.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_rap_knowledge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_rap_opinions.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_strategy_knowledge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/summarise_where_learned_code.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions quarto/main/data_collection.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ all_wave_data <- CARS::get_all_waves(mode = "file")
data <- CARS::get_tidy_data_file("2023_data.csv") %>%
CARS::rename_cols() %>%
CARS::apply_skip_logic() %>%
CARS::clean_workplace() %>%
CARS::clean_departments() %>%
CARS::clean_data() %>%
CARS::derive_vars()

```
Expand Down
3 changes: 1 addition & 2 deletions quarto/main/summary.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ library(magrittr)
data <- CARS::get_tidy_data_file("2023_data.csv") %>%
CARS::rename_cols() %>%
CARS::apply_skip_logic() %>%
CARS::clean_workplace() %>%
CARS::clean_departments() %>%
CARS::clean_data() %>%
CARS::derive_vars()

all_wave_data <- CARS::get_all_waves(mode = "file")
Expand Down
Loading