Created
March 20, 2017 18:12
-
-
Save jacksonpradolima/b6cad89e161569e26e42460c04253e81 to your computer and use it in GitHub Desktop.
Example to execute kruskal test (https://gist.github.com/jacksonpradolima/9f4b5def641ef61504c8b32c87c409c8)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# execute the function kruskal.test.with.post.hoc | |
#read the data | |
csv_file <- "kruskal_final_bisect.csv" | |
my_data <- read.csv(csv_file, sep=";") | |
result <- kruskal.test.with.post.hoc(my_data$Value, my_data$Group, my_data) | |
result | |
format(result$Nemenyi$p.value, scientific = TRUE) | |
format(result$Kruskal$p.value, scientific = TRUE) | |
print("===============================================") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment