Closed daynefiler closed 8 years ago
nchar(NA) changed from returning 2 to returning NA in R 3.3.0 -- resulting in an error when plotting a concentration series that was unable to calculate the covariance matrix.
nchar(NA)
2
NA
Fix by assigning the values as "NA" instead of NA.
"NA"
nchar(NA)
changed from returning2
to returningNA
in R 3.3.0 -- resulting in an error when plotting a concentration series that was unable to calculate the covariance matrix.Fix by assigning the values as
"NA"
instead ofNA
.