Using janitor in R and I don't understand the error message from the janitor package

1.6k Views Asked by At

I have used the following R code:

janitor::tabyl(data, do_you_recycle,recycle_beauty_products)%>%
janitor::adorn_totals(where = c('row','col'))%>%  
janitor::adorn_percentages(denominator = "all")%>%
janitor::adorn_pct_formatting()

It worked last time I ran the code. However, I just reran it and got the following error:

Error in vectbl_assign(x[[j]], i, recycled_value[[j]]) :  DLL requires the use of native symbols

Could someone suggest how to change the code so it runs correctly?

1

There are 1 best solutions below

0
Yasin Amini On

Make sure you're using tibble>=3.2.0. You can install the latest version by intall.packages('tibble')