1C). Species composition in rockpools
• The figures and analysis for this question were done in both multivariate practicals.Your
results section needs to include three components:
• a written description of your findings,
• a figure that visualises those results (with figure legend)
• the details of statistical tests that support the conclusions you made in the text (either
incorporated into the text, or in a table with an appropriate tabl
Read the Maroubra data into into R…
RockPools = read.csv(file = “Maroubra_rock_pools.csv”, header = TRUE)
Look at the data frame so that you are familiar with the structure of the data collected and know what
are the samples, what are the variables and how the samples are grouped by the habitat treatment.
View(RockPools)
Remove the Habitat and Replicate column to get the data ready for multivariate plots and analyses.
RockPools_vars = select(RockPools, -Habitat, -Replicate)
The post Species composition in rockpools appeared first on Assignment Freelancers.