Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFix ‘copy_classes’ for older R releases #9
Comments
|
Issue seems related to this PR (which was patched in R 3.6.0): https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17548 Essentially, x[[name]] <- if(getRversion() <= "3.6.0") {
as.logical(trimws(x[[name]]))
} else {
as.logical(x[[name]])
} |
See current status of tests: https://cran.r-project.org/web/checks/check_results_fastshap.html