From 2328c4dc96e3342ffec1d0db33f9ab66d82aab41 Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Tue, 5 Sep 2023 11:26:38 +0100 Subject: [PATCH 01/19] Add github action for coverage --- .github/workflows/test-coverage.yaml | 50 ++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/test-coverage.yaml diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..2c5bb50 --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,50 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +name: test-coverage + +jobs: + test-coverage: + runs-on: ubuntu-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: actions/checkout@v3 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::covr + needs: coverage + + - name: Test coverage + run: | + covr::codecov( + quiet = FALSE, + clean = FALSE, + install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package") + ) + shell: Rscript {0} + + - name: Show testthat output + if: always() + run: | + ## -------------------------------------------------------------------- + find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true + shell: bash + + - name: Upload test results + if: failure() + uses: actions/upload-artifact@v3 + with: + name: coverage-test-failures + path: ${{ runner.temp }}/package From 87b9ec9577ba595d01674ba64a233167174af5ce Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Wed, 6 Sep 2023 14:36:32 +0100 Subject: [PATCH 02/19] Fix depricated dpylr function --- R/frequency-tables.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/frequency-tables.R b/R/frequency-tables.R index 974a6e6..7d6ae9d 100644 --- a/R/frequency-tables.R +++ b/R/frequency-tables.R @@ -1285,7 +1285,7 @@ calculate_multi_table_freqs <- function(data, col1, col2, levels1, levels2, prop selected_data[col2] <- factor(selected_data[[col2]], levels = levels2) frequencies <- selected_data %>% - count(across(c(col1, col2)), .drop=FALSE) %>% + count(across(all_of(c(col1, col2))), .drop=FALSE) %>% drop_na() %>% data.frame() From 142592c75b12d5fe363968d32a7fa5f14dec8c7d Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Wed, 6 Sep 2023 14:37:32 +0100 Subject: [PATCH 03/19] Add test for summarise_cap_change_by_line_manage --- ...test-summarise_cap_change_by_line_manage.R | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 tests/testthat/test-summarise_cap_change_by_line_manage.R diff --git a/tests/testthat/test-summarise_cap_change_by_line_manage.R b/tests/testthat/test-summarise_cap_change_by_line_manage.R new file mode 100644 index 0000000..84fca20 --- /dev/null +++ b/tests/testthat/test-summarise_cap_change_by_line_manage.R @@ -0,0 +1,49 @@ + +dummy_data <- data.frame(management = c(NA, + rep("Yes", 5), + rep("No - I manage people who do not write code", 5), + rep("No - I don't line manage anyone", 5)), + coding_ability_change = c(NA, + rep(c("Significantly worse", + "Slightly worse", + "No change", + "Slightly better", + "Significantly better"), + times=3))) + +test_that("summarise_cap_change_by_line_manage missing data is handled correctly", { + + got <- summarise_cap_change_by_line_manage(dummy_data) + + expect_false(any(is.na.data.frame(got))) + +}) + +test_that("summarise_cap_change_by_line_manage output is as expected", { + + got <- summarise_cap_change_by_line_manage(dummy_data) + + expected <- data.frame(management = factor(rep(c("Yes", + "No - I manage people who do not write code", + "No - I don't line manage anyone"), + each=5), + levels = c("Yes", + "No - I manage people who do not write code", + "No - I don't line manage anyone")), + coding_ability_change = factor(rep(c("Significantly worse", + "Slightly worse", + "No change", + "Slightly better", + "Significantly better"), 3), + levels = c("Significantly worse", + "Slightly worse", + "No change", + "Slightly better", + "Significantly better")), + n = c(0.20, 0.20, 0.20, 0.20, 0.20, + 0.20, 0.20, 0.20, 0.20, 0.20, + 0.20, 0.20, 0.20, 0.20, 0.20)) + + expect_equal(got, expected) + +}) From db57d2142fb9cf310e4de4a90109ec9b76dfca74 Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Wed, 6 Sep 2023 15:51:32 +0100 Subject: [PATCH 04/19] Add test for summarise_open_source_by_prof --- .../test-summarise_open_source_by_prof.R | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 tests/testthat/test-summarise_open_source_by_prof.R diff --git a/tests/testthat/test-summarise_open_source_by_prof.R b/tests/testthat/test-summarise_open_source_by_prof.R new file mode 100644 index 0000000..e8024a2 --- /dev/null +++ b/tests/testthat/test-summarise_open_source_by_prof.R @@ -0,0 +1,74 @@ +# Coding tools frequency tables (access or knowledge) + +dummy_data <- data.frame( + prac_use_open_source = c(NA, + rep(c("I don't understand this question", + "Never", + "Rarely", + "Sometimes", + "Regularly", + "All the time"), 2)), + prac_open_source_own = rep("Sometimes", 13), + prac_version_control = rep("Sometimes", 13), + prac_review = rep("Sometimes", 13), + prac_functions = rep("Sometimes", 13), + prac_unit_test = rep("Sometimes", 13), + prac_package = rep("Sometimes", 13), + prac_dir_structure = rep("Sometimes", 13), + prac_style = rep("Sometimes", 13), + prac_automated_QA = rep("Sometimes", 13), + prac_AQUA_book = rep("Sometimes", 13), + prof_DS = c(NA, rep(c("Yes", "No"), each=6)), + prof_DDAT = c(NA, rep(c("Yes", "No"), each=6)), + prof_GAD = c(NA, rep(c("Yes", "No"), each=6)), + prof_GES = c(NA, rep(c("Yes", "No"), each=6)), + prof_geog = c(NA, rep(c("Yes", "No"), each=6)), + prof_GORS = c(NA, rep(c("Yes", "No"), each=6)), + prof_GSR = c(NA, rep(c("Yes", "No"), each=6)), + prof_GSG = c(NA, rep(c("Yes", "No"), each=6))) + +test_that("summarise_open_source_by_prof missing data is handled correctly", { + + got <- summarise_open_source_by_prof(dummy_data) + + + expect_false(any(is.na.data.frame(got))) + +}) + +test_that("summarise_open_source_by_prof output is as expected", { + + got <- summarise_open_source_by_prof(dummy_data) + + expected <- data.frame(name = rep(c("Data scientists", + "Digital and data (DDAT)", + "Actuaries", + "Economists (GES)", + "Geographers", + "Operational researchers (GORS)", + "Social researchers (GSR)", + "Statisticians (GSG)"), each=6), + value = factor(rep(c("I don't understand this question", + "Never", + "Rarely", + "Sometimes", + "Regularly", + "All the time"), 8), + levels = c("I don't understand this question", + "Never", + "Rarely", + "Sometimes", + "Regularly", + "All the time")), + n = c(1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6, + 1/6, 1/6, 1/6, 1/6, 1/6, 1/6)) + + expect_equal(got, expected) + +}) From 799986adacbb46b3d7e8a9d356ad5d9b8a9d6824 Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Wed, 13 Sep 2023 15:03:03 +0100 Subject: [PATCH 05/19] Add unit test for summarise heard of RAP by prof --- R/frequency-tables.R | 3 ++ .../test-summarise_heard_of_RAP_by_prof.R | 49 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 tests/testthat/test-summarise_heard_of_RAP_by_prof.R diff --git a/R/frequency-tables.R b/R/frequency-tables.R index 7d6ae9d..89b869e 100644 --- a/R/frequency-tables.R +++ b/R/frequency-tables.R @@ -1125,6 +1125,9 @@ summarise_heard_of_RAP_by_prof <- function(data) { 1)) rownames(frequencies) <- NULL + names(frequencies$n) <- NULL + + frequencies$value <- recode(frequencies$value, !!!prof_names) return(frequencies) diff --git a/tests/testthat/test-summarise_heard_of_RAP_by_prof.R b/tests/testthat/test-summarise_heard_of_RAP_by_prof.R new file mode 100644 index 0000000..252b631 --- /dev/null +++ b/tests/testthat/test-summarise_heard_of_RAP_by_prof.R @@ -0,0 +1,49 @@ +# Coding tools frequency tables (access or knowledge) + +dummy_data <- data.frame( + workplace = rep(c("Civil service, including devolved administations", "Office for Students", "NHS"), each=4), + heard_of_RAP = rep(c("Yes", "Yes", "No", "No"), 3), + prof_DS = rep(c("Yes", "No"), 6), + prof_DDAT = rep(c("Yes", "No"), 6), + prof_GAD = rep(c("Yes", "No"), 6), + prof_GES = rep(c("Yes", "No"), 6), + prof_geog = rep(c("Yes", "No"), 6), + prof_GORS = rep(c("Yes", "No"), 6), + prof_GSR = rep(c("Yes", "No"), 6), + prof_GSG = rep(c("Yes", "No"), 6)) + +test_that("summarise_heard_of_RAP_by_prof missing data is handled correctly", { + + dummy_data[1, ] <- NA + + got <- summarise_heard_of_RAP_by_prof(dummy_data) + + expect_false(any(is.na.data.frame(got))) + +}) + +test_that("summarise_heard_of_RAP_by_prof output is as expected", { + + got <- summarise_heard_of_RAP_by_prof(dummy_data) + + expected <- data.frame(value = factor(c("Data scientists", + "Digital and data (DDAT)", + "Actuaries", + "Economists (GES)", + "Geographers", + "Operational researchers (GORS)", + "Social researchers (GSR)", + "Statisticians (GSG)"), + levels = c("Data scientists", + "Digital and data (DDAT)", + "Actuaries", + "Economists (GES)", + "Geographers", + "Operational researchers (GORS)", + "Social researchers (GSR)", + "Statisticians (GSG)")), + n = c(1/2, 1/2, 1/2, 1/2, 1/2, 1/2, 1/2, 1/2)) + + expect_equal(got, expected) + +}) From 0a83902994596d7e63de5cef4c81a98ab3d8a2e9 Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Thu, 14 Sep 2023 15:41:19 +0100 Subject: [PATCH 06/19] Make calculate freqs unit test more robust --- tests/testthat/test-calculate_freqs.R | 42 +++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/tests/testthat/test-calculate_freqs.R b/tests/testthat/test-calculate_freqs.R index adc943f..3bdcc5f 100644 --- a/tests/testthat/test-calculate_freqs.R +++ b/tests/testthat/test-calculate_freqs.R @@ -17,6 +17,15 @@ expected <- data.frame(name = rep(c("Question 1", levels = c("test1", "test2", "test3")), n = c(1, 0, 0, 0, 1, 0, 0.5, 0, 0.5)) +test_that("create_tidy_freq_table validation works", { + + expect_error(calculate_freqs(data = dummy_data, + questions = questions, + levels = levels), + "Missing input: labels needed for mutli-column frequencies.") + +}) + test_that("create_tidy_freq_table missing data is handled correctly", { got <- calculate_freqs(data = dummy_data, @@ -52,3 +61,36 @@ test_that("create_tidy_freq_table count output is as expected", { expect_equal(got, expected) }) + +test_that("create_tidy_freq_table single question proportion output is as expected", { + + questions <- "Q1" + + got <- calculate_freqs(data = dummy_data, + questions = questions, + levels = levels) + + expected <- data.frame(value = factor(c("test1", "test2", "test3"), + levels = c("test1", "test2", "test3")), + n = c(1, 0, 0)) + + expect_equal(got, expected) + +}) + +test_that("create_tidy_freq_table single question count output is as expected", { + + questions <- "Q1" + + got <- calculate_freqs(data = dummy_data, + questions = questions, + levels = levels, + prop = FALSE) + + expected <- data.frame(value = factor(c("test1", "test2", "test3"), + levels = c("test1", "test2", "test3")), + n = c(1, 0, 0)) + + expect_equal(got, expected) + +}) From c634aa969e2a0cf295bbd1629e37c5d00673aead Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Wed, 20 Sep 2023 16:33:20 +0100 Subject: [PATCH 07/19] Add unit test for summarise_os_vs_prop --- tests/testthat/test-summarise_os_vs_prop.R | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/testthat/test-summarise_os_vs_prop.R diff --git a/tests/testthat/test-summarise_os_vs_prop.R b/tests/testthat/test-summarise_os_vs_prop.R new file mode 100644 index 0000000..4500aa6 --- /dev/null +++ b/tests/testthat/test-summarise_os_vs_prop.R @@ -0,0 +1,32 @@ + +dummy_data <- data.frame(year = rep(c(2020, 2021, 2022), each=32), + knowledge_python = rep(rep(c("Yes", "No"), each=16), times=3), + knowledge_R = rep(rep(c("Yes", "No"), each=8), times=6), + knowledge_SAS = rep(rep(c("Yes", "No"), each=4), times=12), + knowledge_SPSS = rep(rep(c("Yes", "No"), each=2), times=24), + knowledge_stata = rep(c("Yes", "No"), times=48)) + +test_that("summarise_os_vs_prop missing data is handled correctly", { + + dummy_data[1,2] <- NA + + got <- summarise_os_vs_prop(dummy_data) + + expect_false(any(is.na.data.frame(got))) + +}) + +test_that("summarise_os_vs_prop output is as expected", { + + got <- summarise_os_vs_prop(dummy_data) + + expected <- data.frame(lang_type = factor(rep(c("open source", "proprietary"), each=3), + levels = c("open source", "proprietary")), + year = rep(c("2020", "2021", "2022"), times=2), + Freq = rep(c(24, 28), each=3), + n = rep(32, times=6)) %>% + get_ci(freq_col = 3, n_col = 4) + + expect_equal(got, expected) + +}) From c14c471fe1b142ec205a1c9e54e8d44261b1bbc3 Mon Sep 17 00:00:00 2001 From: ldavies99 Date: Thu, 21 Sep 2023 14:28:22 +0100 Subject: [PATCH 08/19] Update docs --- docs/data_collection.html | 10 +-- ...ent-fisheries-and-aquaculture-science.html | 84 +++++++++---------- ...nd-industrial-strategy-excl-agencies-.html | 84 +++++++++---------- ...t-for-digital-culture-media-and-sport.html | 84 +++++++++---------- .../departments/department-for-education.html | 84 +++++++++---------- ...food-and-rural-affairs-excl-agencies-.html | 84 +++++++++---------- ...and-rural-affairs-including-agencies-.html | 84 +++++++++---------- .../department-for-international-trade.html | 84 +++++++++---------- ...-levelling-up-housing-and-communities.html | 84 +++++++++---------- ...partment-for-transport-excl-agencies-.html | 84 +++++++++---------- .../department-for-work-and-pensions.html | 84 +++++++++---------- ...health-and-social-care-excl-agencies-.html | 84 +++++++++---------- docs/departments/forestry-commission.html | 84 +++++++++---------- .../government-actuary-s-department.html | 84 +++++++++---------- docs/departments/hm-revenue-and-customs.html | 84 +++++++++---------- docs/departments/ministry-of-defence.html | 84 +++++++++---------- .../ministry-of-justice-excl-agencies-.html | 84 +++++++++---------- .../national-records-of-scotland.html | 84 +++++++++---------- docs/departments/nhs.html | 84 +++++++++---------- ...reland-statistics-and-research-agency.html | 84 +++++++++---------- .../office-for-national-statistics.html | 84 +++++++++---------- docs/departments/public-health-scotland.html | 84 +++++++++---------- .../scottish-government-excl-agencies-.html | 84 +++++++++---------- .../uk-health-security-agency.html | 84 +++++++++---------- docs/departments/welsh-government.html | 84 +++++++++---------- docs/professions/data-scientists.html | 84 +++++++++---------- docs/professions/digital-and-data.html | 84 +++++++++---------- .../government-actuarys-department.html | 84 +++++++++---------- .../government-economic-service.html | 84 +++++++++---------- docs/professions/government-geography.html | 84 +++++++++---------- .../government-operational-research.html | 84 +++++++++---------- .../government-social-research.html | 84 +++++++++---------- .../government-statician-group.html | 84 +++++++++---------- .../htmlwidgets.js | 0 docs/summary.html | 74 ++++++++-------- 35 files changed, 1386 insertions(+), 1386 deletions(-) rename docs/site_libs/{htmlwidgets-1.6.2 => htmlwidgets-1.6.1}/htmlwidgets.js (100%) diff --git a/docs/data_collection.html b/docs/data_collection.html index 3b676ea..3d3b8f8 100644 --- a/docs/data_collection.html +++ b/docs/data_collection.html @@ -50,7 +50,7 @@ } - + @@ -267,7 +267,7 @@

Coding frequency

#code-freq-table {display: none;}
@@ -313,7 +313,7 @@

Coding frequency

- + @@ -348,7 +348,7 @@

Grade

#grades-by-year-table {display: none;}
@@ -394,7 +394,7 @@

Grade

- + diff --git a/docs/departments/centre-for-environment-fisheries-and-aquaculture-science.html b/docs/departments/centre-for-environment-fisheries-and-aquaculture-science.html index 8172575..40720e0 100644 --- a/docs/departments/centre-for-environment-fisheries-and-aquaculture-science.html +++ b/docs/departments/centre-for-environment-fisheries-and-aquaculture-science.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-business-energy-and-industrial-strategy-excl-agencies-.html b/docs/departments/department-for-business-energy-and-industrial-strategy-excl-agencies-.html index 5fc17af..0b4e73d 100644 --- a/docs/departments/department-for-business-energy-and-industrial-strategy-excl-agencies-.html +++ b/docs/departments/department-for-business-energy-and-industrial-strategy-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-digital-culture-media-and-sport.html b/docs/departments/department-for-digital-culture-media-and-sport.html index 2385f6a..98de4f2 100644 --- a/docs/departments/department-for-digital-culture-media-and-sport.html +++ b/docs/departments/department-for-digital-culture-media-and-sport.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-education.html b/docs/departments/department-for-education.html index 0fff675..8799ce5 100644 --- a/docs/departments/department-for-education.html +++ b/docs/departments/department-for-education.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-environment-food-and-rural-affairs-excl-agencies-.html b/docs/departments/department-for-environment-food-and-rural-affairs-excl-agencies-.html index c1cfdb6..c35ef03 100644 --- a/docs/departments/department-for-environment-food-and-rural-affairs-excl-agencies-.html +++ b/docs/departments/department-for-environment-food-and-rural-affairs-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-environment-food-and-rural-affairs-including-agencies-.html b/docs/departments/department-for-environment-food-and-rural-affairs-including-agencies-.html index 409d358..31580bf 100644 --- a/docs/departments/department-for-environment-food-and-rural-affairs-including-agencies-.html +++ b/docs/departments/department-for-environment-food-and-rural-affairs-including-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-international-trade.html b/docs/departments/department-for-international-trade.html index ed44e6b..3f8429b 100644 --- a/docs/departments/department-for-international-trade.html +++ b/docs/departments/department-for-international-trade.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-levelling-up-housing-and-communities.html b/docs/departments/department-for-levelling-up-housing-and-communities.html index a22b3f1..031b5b2 100644 --- a/docs/departments/department-for-levelling-up-housing-and-communities.html +++ b/docs/departments/department-for-levelling-up-housing-and-communities.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-transport-excl-agencies-.html b/docs/departments/department-for-transport-excl-agencies-.html index c9b2317..3623be4 100644 --- a/docs/departments/department-for-transport-excl-agencies-.html +++ b/docs/departments/department-for-transport-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-for-work-and-pensions.html b/docs/departments/department-for-work-and-pensions.html index ef344eb..f88380d 100644 --- a/docs/departments/department-for-work-and-pensions.html +++ b/docs/departments/department-for-work-and-pensions.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/department-of-health-and-social-care-excl-agencies-.html b/docs/departments/department-of-health-and-social-care-excl-agencies-.html index 88b5536..7d45e1f 100644 --- a/docs/departments/department-of-health-and-social-care-excl-agencies-.html +++ b/docs/departments/department-of-health-and-social-care-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/forestry-commission.html b/docs/departments/forestry-commission.html index 50699e8..bb9496b 100644 --- a/docs/departments/forestry-commission.html +++ b/docs/departments/forestry-commission.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/government-actuary-s-department.html b/docs/departments/government-actuary-s-department.html index e8b79cf..7c11d13 100644 --- a/docs/departments/government-actuary-s-department.html +++ b/docs/departments/government-actuary-s-department.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/hm-revenue-and-customs.html b/docs/departments/hm-revenue-and-customs.html index 1ad35c6..f2ddc04 100644 --- a/docs/departments/hm-revenue-and-customs.html +++ b/docs/departments/hm-revenue-and-customs.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/ministry-of-defence.html b/docs/departments/ministry-of-defence.html index f4521ae..08b6346 100644 --- a/docs/departments/ministry-of-defence.html +++ b/docs/departments/ministry-of-defence.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/ministry-of-justice-excl-agencies-.html b/docs/departments/ministry-of-justice-excl-agencies-.html index edcc837..08a4f5a 100644 --- a/docs/departments/ministry-of-justice-excl-agencies-.html +++ b/docs/departments/ministry-of-justice-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/national-records-of-scotland.html b/docs/departments/national-records-of-scotland.html index 0577046..288273b 100644 --- a/docs/departments/national-records-of-scotland.html +++ b/docs/departments/national-records-of-scotland.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/nhs.html b/docs/departments/nhs.html index 013c31b..ca5e815 100644 --- a/docs/departments/nhs.html +++ b/docs/departments/nhs.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/northern-ireland-statistics-and-research-agency.html b/docs/departments/northern-ireland-statistics-and-research-agency.html index b5892ce..1b6de42 100644 --- a/docs/departments/northern-ireland-statistics-and-research-agency.html +++ b/docs/departments/northern-ireland-statistics-and-research-agency.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/office-for-national-statistics.html b/docs/departments/office-for-national-statistics.html index 41553a7..adcfd2d 100644 --- a/docs/departments/office-for-national-statistics.html +++ b/docs/departments/office-for-national-statistics.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/public-health-scotland.html b/docs/departments/public-health-scotland.html index f857d3b..cd7ca28 100644 --- a/docs/departments/public-health-scotland.html +++ b/docs/departments/public-health-scotland.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/scottish-government-excl-agencies-.html b/docs/departments/scottish-government-excl-agencies-.html index 43794d1..0491e60 100644 --- a/docs/departments/scottish-government-excl-agencies-.html +++ b/docs/departments/scottish-government-excl-agencies-.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/uk-health-security-agency.html b/docs/departments/uk-health-security-agency.html index d52a016..4aa5957 100644 --- a/docs/departments/uk-health-security-agency.html +++ b/docs/departments/uk-health-security-agency.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/departments/welsh-government.html b/docs/departments/welsh-government.html index 2ff91ed..794c322 100644 --- a/docs/departments/welsh-government.html +++ b/docs/departments/welsh-government.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/data-scientists.html b/docs/professions/data-scientists.html index 5c52b01..bc18e31 100644 --- a/docs/professions/data-scientists.html +++ b/docs/professions/data-scientists.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/digital-and-data.html b/docs/professions/digital-and-data.html index 0987a6b..4a3741d 100644 --- a/docs/professions/digital-and-data.html +++ b/docs/professions/digital-and-data.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-actuarys-department.html b/docs/professions/government-actuarys-department.html index 9f2f96c..3e74868 100644 --- a/docs/professions/government-actuarys-department.html +++ b/docs/professions/government-actuarys-department.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-economic-service.html b/docs/professions/government-economic-service.html index 8d7ebd7..db6e5a8 100644 --- a/docs/professions/government-economic-service.html +++ b/docs/professions/government-economic-service.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-geography.html b/docs/professions/government-geography.html index 665e9b3..520ffd7 100644 --- a/docs/professions/government-geography.html +++ b/docs/professions/government-geography.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-operational-research.html b/docs/professions/government-operational-research.html index 6315219..0beb21d 100644 --- a/docs/professions/government-operational-research.html +++ b/docs/professions/government-operational-research.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-social-research.html b/docs/professions/government-social-research.html index bffee43..d6a629e 100644 --- a/docs/professions/government-social-research.html +++ b/docs/professions/government-social-research.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/professions/government-statician-group.html b/docs/professions/government-statician-group.html index b266ec7..89e4e35 100644 --- a/docs/professions/government-statician-group.html +++ b/docs/professions/government-statician-group.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -190,7 +190,7 @@

#coding-freq-table {display: none;}
@@ -229,7 +229,7 @@

- + @@ -265,7 +265,7 @@

What code is b #operations-table {display: none;}
@@ -320,7 +320,7 @@

What code is b

- + @@ -365,7 +365,7 @@

Access to coding to #access-table {display: none;}
@@ -452,7 +452,7 @@

Access to coding to

- + @@ -486,7 +486,7 @@

Coding tool knowledg #knowledge-table {display: none;}
@@ -573,7 +573,7 @@

Coding tool knowledg

- + @@ -615,7 +615,7 @@

Access to git

#git-access-table {display: none;}
@@ -646,7 +646,7 @@

Access to git

- + @@ -680,7 +680,7 @@

Git knowledge

#git-knowledge-table {display: none;}
@@ -711,7 +711,7 @@

Git knowledge

- + @@ -750,7 +750,7 @@

Good analys
@@ -912,7 +912,7 @@

Good analys #good-practices-table {display: none;}
@@ -1035,7 +1035,7 @@

Good analys

- +

@@ -1046,7 +1046,7 @@

Documentation

@@ -1076,7 +1076,7 @@

Documentation

#doc-table {display: none;}
@@ -1163,7 +1163,7 @@

Documentation

- +
@@ -1205,7 +1205,7 @@

Dependency Managemen #dependency-management-table {display: none;}
@@ -1236,7 +1236,7 @@

Dependency Managemen

- + @@ -1278,7 +1278,7 @@

Continuous integrat #ci-table {display: none;}
@@ -1309,7 +1309,7 @@

Continuous integrat

- + @@ -1351,7 +1351,7 @@

Reproducibl #rep-workflow-table {display: none;}
@@ -1382,7 +1382,7 @@

Reproducibl

- + @@ -1428,7 +1428,7 @@

Knowledge of RAP

#rap-knowledge-table {display: none;}
@@ -1467,7 +1467,7 @@

Knowledge of RAP

- + @@ -1502,7 +1502,7 @@

Knowledge of RAP #strategy-knowledge-table {display: none;}
@@ -1533,7 +1533,7 @@

Knowledge of RAP

- + @@ -1544,7 +1544,7 @@

Opinions on RAP

@@ -1574,7 +1574,7 @@

Opinions on RAP

#rap-opinions-table {display: none;}
@@ -1653,7 +1653,7 @@

Opinions on RAP

- +
@@ -1694,7 +1694,7 @@

RAP components

#rap-comp-table {display: none;}
@@ -1779,7 +1779,7 @@

RAP components

- + @@ -1813,7 +1813,7 @@

Basic RAP scores

#basic-rap-scores-table {display: none;}
@@ -1860,7 +1860,7 @@

Basic RAP scores

- + @@ -1894,7 +1894,7 @@

Advanced RAP scores
@@ -1945,7 +1945,7 @@

Advanced RAP scores

- + diff --git a/docs/site_libs/htmlwidgets-1.6.2/htmlwidgets.js b/docs/site_libs/htmlwidgets-1.6.1/htmlwidgets.js similarity index 100% rename from docs/site_libs/htmlwidgets-1.6.2/htmlwidgets.js rename to docs/site_libs/htmlwidgets-1.6.1/htmlwidgets.js diff --git a/docs/summary.html b/docs/summary.html index 0f85c16..4c5300b 100644 --- a/docs/summary.html +++ b/docs/summary.html @@ -48,7 +48,7 @@ "search-submit-button-title": "Submit" } } - + @@ -185,7 +185,7 @@

2022 data

#coding-freq-table {display: none;}
@@ -224,7 +224,7 @@

2022 data

- + @@ -258,7 +258,7 @@

Coding frequenc #code-freq-table {display: none;}
@@ -304,7 +304,7 @@

Coding frequenc

- + @@ -350,7 +350,7 @@