I got two datasets.
Each dataset got lots of columns of the same species, sampled at two different occasions.
Now I want to see if the mean value of the species is significantly different of each other. I learned that I have to do a paired t-test for this.
I figured out the formula to do this is:
t.test(dataset1$'specie',dataset2$'specie')
Q1: Am I using the correct function for a paired t-test?
Q2: Given that I've actually done it correctly. How do I interpret the answer?. What does the t= tell me? The p-value is low, does that mean the mean values of the species are similar or not?
Q3: Is there a way to make R automatically compare all the same species from the two datasets against each other, or do I have to do it manually?