Skip to content

Commit

Permalink
QA output doc (#80)
Browse files Browse the repository at this point in the history
* Updated data ingest to include clean_data function

* Update freq table functions with arg to return sample sizes

* Updated multi table freqs

* Updated coding prac freq table functions with sample arg

* Created summary_qa.qmd and updated function documentation

* Updated freq-tables function documentation

* Updated cap_change_by_freq test

* Added sample arg to summarise_all function for QA
  • Loading branch information
CHCRowley authored Jan 24, 2024
1 parent 2167a43 commit 48adc8f
Show file tree
Hide file tree
Showing 26 changed files with 515 additions and 76 deletions.
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

0 comments on commit 48adc8f

Please sign in to comment.