My data are responses to the development of sporophytes to a certain treatment. Per treatment, there are 5 replicates.
The data goes on like above until B-HN-18-5 (Bodø, high nutrient, 18C, replicate 5)for the temperature 4, 8, 12, and 18. However, I am only using sporophytes per cm2 and the treatment columns.
My response variable is how many sporophytes developed but I want to examine if the relationship between the treatment and the response is significant or not in R.
I typed:
Anova1 <- aov(sporophytes.cm2~Treatment, SelectData1)
summary(Anova1)
my results did not show the F Statistics and p-value of the response:
summary(Anova1)
Df Sum Sq Mean Sq
Treatment 39 1531 39.25
How can I obtain these?