@@ -32,7 +32,7 @@ The survey spreadsheet must have one tab for each domain ID defined in the
32
32
` data/domains.csv ` file. Each domain tab must have a capabilities table
33
33
beginning at row 2 (with row 1 ignored as the table title), followed
34
34
by one blank row, the Threats table tile, then the threats table itself. All
35
- other sheets (instructions, reference, etc.) are ignored.
35
+ other sheets (instructions, reference, etc.) are ignored.
36
36
37
37
``` {r setup, include=FALSE}
38
38
if ("pacman" %in% installed.packages()) {
@@ -167,7 +167,7 @@ scenarios
167
167
Perform some minimal data validation between the capabilites and scenarios
168
168
tables.
169
169
170
- ``` {r valdiate }
170
+ ``` {r valdiate_spreadsheet }
171
171
# Check that scenario IDs have no gaps
172
172
scenario_gaps <- setdiff(seq(range(scenarios$scenario_id)[1],
173
173
range(scenarios$scenario_id)[2]),
@@ -254,6 +254,6 @@ if (exists("write_files") && write_files) {
254
254
file.info(c("data/capabilities.csv", "data/scenarios.csv")) %>%
255
255
rownames_to_column("filename") %>% as_data_frame %>% pander
256
256
} else {
257
- message("Write_files not set. Not writing to disk.")
257
+ message("Write_files not set to TRUE . Not writing to disk.")
258
258
}
259
259
```
0 commit comments