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
Hello, a colleague reached out for help with the fourthcorner function. I found that he was passing in a tibble and not a straight data.frame which causes the is.numeric() on line 85 of fourthcorner.R to return FALSE. But the is.data.frame(tabR) check on line 12 passes. E.g.,:
Thanks Andy for the report. I do not use tibble but I will think about it. The solution seems esay but I have to check if it will note introduce other bugs. Cheers
aursiber
changed the title
is.numeric() check failing with tibble in fourthcorner funciton
is.numeric() check failing with tibble in fourthcorner function
May 26, 2021
Hello, a colleague reached out for help with the
fourthcorner
function. I found that he was passing in atibble
and not a straightdata.frame
which causes theis.numeric()
on line 85 of fourthcorner.R to return FALSE. But theis.data.frame(tabR)
check on line 12 passes. E.g.,:Perhaps an
as.data.frame
coercion on tibbles would solve this.Thanks for a great pacakge.
The text was updated successfully, but these errors were encountered: