Skip to content

Instantly share code, notes, and snippets.

@lundquist-ecology-lab
Created December 27, 2022 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lundquist-ecology-lab/accc701c5391c1e853c9656637932abb to your computer and use it in GitHub Desktop.
Save lundquist-ecology-lab/accc701c5391c1e853c9656637932abb to your computer and use it in GitHub Desktop.
Running Wilcoxson signed rank test in R
data(iris)
df <- subset(iris, iris$Species == "setosa")
wilcox.test(df$Sepal.Width, df$Sepal.Length)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment