Friedman test unreplicated complete block design error

后端 未结 6 2060
北海茫月
北海茫月 2021-01-18 15:16

I\'m having trouble running a Friedman test over my data. I\'m trying to run a Friedman test using this command:

friedman.test(mean ~ isi | expId, data=monoS         


        
6条回答
  •  长情又很酷
    2021-01-18 15:45

    I ran into the same cryptic error message in R, though in my case it was resolved when I applied the 'as.matrix' function to what was originally a dataframe for the CSV file I imported in using the read.csv() function.

    I also had a missing data point in my original data set, and I found that when my data was transformed into a matrix for the friedman.test() call, the entire row containing the missing data point was omitted automatically.

提交回复
热议问题