Research Methods and Data Analysis

Author

Jamie Griffiths

Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.

  • The graph shown above represents a horse data set which shows the relationship between height and movement in the measurement ‘height’. the lowest movement being the smallest horse at 131cm and the most movement not being the biggest horse which was 154cm but instead the horse with the most movement was 146cm and 149cm.

Running Code

When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

library(tidyverse)

include a plot

Code
ggplot(diamonds, aes(x = cut)) +
  geom_bar()

more descriptive stuff here

Figure 1: a bar chart of diamond cuts