You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Devtools::check() indicates an error and warnings with the package in the part where testthat.R is being run. This happens also in the main. Specifically, in test-input_apply_gam.R it gives the following error:
Error in dplyr::select(., smooth, var, data, derivative, se, crit, lower, upper): Can't select columns that don't exist.
✖ Column smooth doesn't exist.
Warnings include warnings of the following type :
Use of .data in tidyselect expressions was deprecated in tidyselect 1.2.0.
ℹ Please use "rank" instead of .data$rank
Using an external vector in selections was deprecated in tidyselect 1.1.0.
ℹ Please use all_of() or any_of() instead.
Was:
data %>% select(name_col_taxa)
Now:
data %>% select(all_of(name_col_taxa))
Will wait to merge branch with the main until this is solved.
The text was updated successfully, but these errors were encountered:
Devtools::check() indicates an error and warnings with the package in the part where testthat.R is being run. This happens also in the main. Specifically, in test-input_apply_gam.R it gives the following error:
Error in
dplyr::select(., smooth, var, data, derivative, se, crit, lower, upper)
: Can't select columns that don't exist.✖ Column
smooth
doesn't exist.Warnings include warnings of the following type :
Use of .data in tidyselect expressions was deprecated in tidyselect 1.2.0.
ℹ Please use
"rank"
instead of.data$rank
Using an external vector in selections was deprecated in tidyselect 1.1.0.
ℹ Please use
all_of()
orany_of()
instead.Was:
data %>% select(name_col_taxa)
Now:
data %>% select(all_of(name_col_taxa))
Will wait to merge branch with the main until this is solved.
The text was updated successfully, but these errors were encountered: