ModelOriented / iBreakDown
Showing 1 of 3 files from the diff.
Other files ignored by Codecov
NEWS.md has changed.
DESCRIPTION has changed.

@@ -305,6 +305,9 @@
Loading
305 305
nice_format <- function(x) {
306 306
  if (is.numeric(x)) {
307 307
    as.character(signif(x, 4))
308 +
  } else if ("tbl" %in% class(x)) {
309 +
    # https://github.com/ModelOriented/iBreakDown/issues/96
310 +
    as.character(x[[1]])
308 311
  } else {
309 312
    as.character(x)
310 313
  }
Files Coverage
R 95.03%
Project Totals (13 files) 95.03%
1
comment: false
2

3
coverage:
4
  status:
5
    project:
6
      default:
7
        target: auto
8
        threshold: 1%
9
        informational: true
10
    patch:
11
      default:
12
        target: auto
13
        threshold: 1%
14
        informational: true
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.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading