I am trying to perform the Shapiro-wilk test using the mvnormtest package as:
mvnormtest::mshapiro.test(data)
but there is an error:
Error in mshapiro.test(data) : U[] is not a matrix with number of columns (sample size) between 3 and 5000
Although the dimension of data is 40000x10, it is not running.
A sample of data is:
structure(list(V1 = c(78.16, 99.19, 99.95, 102.44, 91.2, 0, 0, 0, 0, 0), V2 = c(9588736, 102400, 102400, 102400, 1593344, 4112384, 4112384, 4112384, 4112384, 4112384), V3 = c(149422080L, 145465344L, 138002432L, 137867264L, 103489536L, 81920L, 81920L, 81920L, 81920L, 81920L)), .Names = c("V1", "V2", "V3"), row.names = c(NA, 10L), class = "data.frame")