Hi all,
I have a data set like this one.
What I would like to do is a significance test to see if the number of species in night period is significantly higher than in day period or vice versa
day <- subset(df, period == "day")
night <- subset(df, period == "night")
t.test(y = day$value, x = night$value, alternative = "greater", var.equal = TRUE)
Thanks for your response !
I thought about t.test before but my two sample don't respect the normal distribution, and it's a condition to apply the t.test..
What kind of significance test can I do without the necessity to have a normal distribution ?