R/ct_country_lookup.R
changed.
Showing 1 of 1 files from the diff.
@@ -55,7 +55,7 @@
Loading
55 | 55 | ||
56 | 56 | # Check output, if valid then return as is, if empty return "no matches" |
|
57 | 57 | # message. |
|
58 | - | if (length(ans) == 0 || is.null(ans) || is.na(ans)) { |
|
58 | + | if (any(c(length(ans) == 0, is.null(ans), is.na(ans)))) { |
|
59 | 59 | ans <- "No matching results found" |
|
60 | 60 | } |
|
61 | 61 |
Files | Coverage |
---|---|
R | 78.32% |
Project Totals (9 files) | 78.32% |
190.1
190.2
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.