diff --git a/R/derive_vars.R b/R/derive_vars.R index 158ad5e..65c2598 100644 --- a/R/derive_vars.R +++ b/R/derive_vars.R @@ -115,8 +115,8 @@ derive_basic_rap_scores <- function(data) { .x %in% high_vals ~ 1, TRUE ~ 0), .names = "{.col}_score")) %>% - mutate(doc_score = as.integer(.data$doc_comments_score & .data$doc_readme_score)) %>% - select(-c(.data$doc_comments_score, .data$doc_readme_score)) %>% + mutate(doc_score = as.integer(doc_comments_score & doc_readme_score)) %>% + select(-c(doc_comments_score, doc_readme_score)) %>% rename_with(~ score_col_names[which(paste0(prac_cols, "_score") == .x)], .cols = paste0(prac_cols, "_score")) %>% 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() diff --git a/R/plot.R b/R/plot.R index 6d1f7d1..224dc47 100644 --- a/R/plot.R +++ b/R/plot.R @@ -22,7 +22,8 @@ #' #' @export -freq_subplots <- function(data, xlab, ylab, height, width, bar_colour, nrows = 3, y_margin = .1, x_margin = .1, font_size = 12, orientation = "h") { +freq_subplots <- function(data, xlab, ylab, height, width, bar_colour, nrows = 3, + y_margin = .1, x_margin = .1, font_size = 12, orientation = "h") { if (nrows == 1) { stop("Unexpected input: n_rows should be 2 or greater.") @@ -132,7 +133,10 @@ freq_subplots <- function(data, xlab, ylab, height, width, bar_colour, nrows = 3 #' #' @export -plot_freqs <- function(data, n, colour, break_q_names_col, type = c("bar", "line"), max_lines = 2, xlab = "", ylab = "", font_size = 12, orientation = c("v", "h"), ...) { + +plot_freqs <- function(data, n, colour, break_q_names_col, type = c("bar", "line"), + max_lines = 2, xlab = "", ylab = "", font_size = 12, + orientation = c("v", "h"), ...) { # Set default bar colour if (missing(colour)) { @@ -262,7 +266,7 @@ plot_stacked <- function(data, n, break_q_names_col, type = c("bar", "line"), ma if (!is.data.frame(data)) { stop("Unexpected input - data is not a data.frame.") } else if (ncol(data) != 3) { - stop("Unexpected input - data should have three columns") + stop("Unexpected input - data should have three columns.") } # Validate labels @@ -448,6 +452,7 @@ plot_grouped <- function(data, n, break_q_names_col, max_lines = 2, xlab = "", y x_axis <- axes$cat_axis y_axis <- axes$scale_axis legend = list(traceorder = 'normal') + hovertext <- paste0(data[[1]], ": ", round(abs(y_vals) * 100, 1), "%", " ") } else if (orientation == "h") { data[[1]] <- factor(rev(data[[1]]), levels = rev(unique(data[[1]]))) data[[2]] <- factor(rev(data[[2]]), levels = rev(unique(data[[2]]))) @@ -458,14 +463,13 @@ plot_grouped <- function(data, n, break_q_names_col, max_lines = 2, xlab = "", y y_axis <- axes$cat_axis legend = list(traceorder = 'reversed') ylab <- xlab + hovertext <- paste0(data[[1]], ": ", round(abs(x_vals) * 100, 1), "%", " ") } y_axis$title <- "" sample <- ifelse(!missing(n), paste0("Sample size = ", n), "") - hovertext <- paste0(data[[1]], ": ", round(abs(x_vals) * 100, 1), "%", " ") - fig <- plotly::plot_ly( x = x_vals, y = y_vals, @@ -536,20 +540,20 @@ plot_likert <- function(data, mid, n, break_q_names_col, max_lines = 2, xlab = " n_questions <- length(unique(data[[1]])) n_answers <- length(unique(data[[2]])) + # Validate neutral mid + if (!is.logical(neutral_mid)) { + stop("Unexpected input - neutral_mid is not logical.") + } + # Validate mid if (!is.numeric(mid)) { stop("Unexpected input - mid is not numeric.") } else if (mid < 2) { - stop("Unexpected inout - mid is smaller than 2.") - } else if (neutral_mid & mid > n_answers) { + stop("Unexpected input - mid is smaller than 2.") + } else if (neutral_mid & mid >= n_answers) { stop("Unexpected input - mid >= the number of answers.") } - # Validate neutral mid - if (!is.logical(neutral_mid)) { - stop("Unexpected input - mid is not logical (TRUE/FALSE)") - } - # Apply break_q_names to a column if(!missing(break_q_names_col)) { data[[break_q_names_col]] <- break_q_names(data[[break_q_names_col]], max_lines) @@ -682,7 +686,10 @@ calculate_bases <- function(data, mid, neutral_mid) { } } - negative_bases <- data %>% dplyr::group_by_at(1) %>% dplyr::mutate_at(3, get_neg_bases, mid = mid, neutral_mid = neutral_mid) %>% data.frame + negative_bases <- data %>% + dplyr::group_by_at(1) %>% + dplyr::mutate_at(3, get_neg_bases, mid = mid, neutral_mid = neutral_mid) %>% + data.frame() bases <- bases - negative_bases[[3]] diff --git a/docs/data_collection.html b/docs/data_collection.html index aa76276..48e4d75 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 5358575..94207ed 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 ebfdc4a..4be1ef8 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 bf14b22..cb29b7c 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 630734e..1d4a1ae 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 71736f4..92a2cc4 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 2fbfc68..1c0cf38 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 3677286..aa82862 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 3f09373..d7218b3 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 cfa0203..a1f930c 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 6bf07b9..7bd4ac0 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 628585a..ff6ad64 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 39c2199..139aeea 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 c382e36..3cafd84 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 cbe4c0a..0ffac5a 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 8a4ee0c..fd438d8 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 fd4a2df..9453a05 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 6cb16f3..651f1ea 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 8bb358a..76533ca 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 21e4fcb..2f95936 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 48a4c7a..35e122d 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 4e47458..f911fe3 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 1717e08..0d67827 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 f498b39..279b22b 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 7aacec1..1497e73 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 82b24de..7064a0e 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 23bb349..f5057e6 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 dfdde87..c1b81f8 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 76bbcc4..be4b5cc 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 4e41dc2..944681a 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 4552392..f7b6676 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 d1d2d9b..0abd691 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 f1e83d1..5178c79 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 91ab5bf..094ca27 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 @@