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?