Hey I have some problem whith the package of ScottKnott. I installed but when I try to run, there is a mensage "> sk(test$y, test$trt)
Error in sk(test$y, test$trt) : don't find the funtion "sk"
You need uppercase. Try
SK(test$y, test$trt)
Thanks, but the problems stay...
This is a different issue. Your syntax is wrong.This seems to work
test <- data.frame(trt = factor(rep(letters[1:4], each = 5)),
y = c(1:5, 3:7, 6:10, 9:13))
tt <- with(test,
SK(y ~ trt)
)
You need to look at
?SK
2 Likes
Thanks, now is working well... Hugs
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.