Issue 133
Showing 1 of 3 files from the diff.
R/addDataFrame.R
changed.
Other files ignored by Codecov
.travis.yml
has changed.
tests/testthat/test-addDataFrame.R
has changed.
@@ -160,7 +160,7 @@
Loading
160 | 160 | aux[haveNA] <- characterNA |
|
161 | 161 | ||
162 | 162 | # Excel max cell size limit |
|
163 | - | if (max(nchar(aux)) > .EXCEL_LIMIT_MAX_CHARS_IN_CELL) { |
|
163 | + | if (!all(is.na(aux)) && max(nchar(aux), na.rm = TRUE) > .EXCEL_LIMIT_MAX_CHARS_IN_CELL) { |
|
164 | 164 | warning(sprintf("Some cells exceed Excel's limit of %d characters and they will be truncated", |
|
165 | 165 | .EXCEL_LIMIT_MAX_CHARS_IN_CELL)) |
|
166 | 166 | aux <- strtrim(aux, .EXCEL_LIMIT_MAX_CHARS_IN_CELL) |
Files | Coverage |
---|---|
R | 84.12% |
Project Totals (25 files) | 84.12% |
82.2
82.1
82.1
82.4
82.3
82.2
82.3
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.