When I apply Anderson-Darling test on my dataset using lapply
, I got results only for few columns. What would be the reason? Is there any solution?
I tried:
lapply(df4, ad.test)
or
apply(df,2,ad.test)
For both of these I got the same results, but like I said not for all of the columns.
Here's a link to a related question: Anderson-Darling normality test on all columns of a dataframe