I'm new to R and I have to run Fleiss's kappa on over a thousand pre-made dataframes. I know how it's done individually:
kappam.fleiss(df1, exact=TRUE)
But I have to run the same test across every dataframe:
kappam.fleiss(df1, exact=TRUE)
kappam.fleiss(df2, exact=TRUE)
kappam.fleiss(df3, exact=TRUE)
...
...
kappam.fleiss(df5166, exact=TRUE)
I'm having some trouble phrasing my question correctly, but all I've found so far seem to be loops and functions which don't rightly work when I'm trying to combine dataframes - c(df1, df2, df3, ..., df5166)
Anyone can point me in the right direction?