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
eta_covariate() will error when integer x-data is passed in. eta_covariate() will test for integer data and call cont_cat(), but cont_cat() is set up to only accept character, factor, or logical on the x-axis.
Consistent handling of integer / numeric
# This works> eta_covariate(id, x=co, y=params$eta_names)
# This doesnt>id2<-id %>% dplyr::mutate(AGE= as.integer(AGE))
> eta_covariate(id2, x=co, y=params$eta_names)
Error:columnAGEisrequiredtobecharacter, factor, orlogical
The text was updated successfully, but these errors were encountered:
Summary
eta_covariate()
will error when integer x-data is passed in.eta_covariate()
will test for integer data and callcont_cat()
, butcont_cat()
is set up to only acceptcharacter
,factor
, orlogical
on the x-axis.Consistent handling of integer / numeric
The text was updated successfully, but these errors were encountered: