Skip to content

Instantly share code, notes, and snippets.

@jacksonpradolima
Created March 20, 2017 18:12
Show Gist options
  • Save jacksonpradolima/b6cad89e161569e26e42460c04253e81 to your computer and use it in GitHub Desktop.
Save jacksonpradolima/b6cad89e161569e26e42460c04253e81 to your computer and use it in GitHub Desktop.
# 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