I have a another question, in SAS we use the procedure proc freq a lot, for example to check the frequency of a distribution, to show tables in a list form, do cross tabulation etc. Is there a similar function in R?
You might consider the count
function in dplyr
. It is similar to proc freq
and is something I use to look at frequencies or check derived variables after creating them the same way I might do in SAS.
Ok, nice to know this. Thank you
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.