Last modified on 18. November 2025 at 07:21:12

“The limits of my language mean the limits of my world.” — Ludwig Wittgenstein

2.1 General background

2.2 Theoretical background

2.3 R packages used

2.4 Data

R Code [show / hide]
jump_weight_tbl <- tibble(x = c(0.6, 1, 2.3, 3.5, 5.2, 7.1, 8.4, 9.2, 10),
                          y = 0.15*x^3 - 2.2*x^2 + 8.8*x + 3.2 + rnorm(9, 0, 0.5)) |>
  mutate_all(round, 1) |> 
  rename(weight_mg = x, jump_length_cm = y)
Table 2.1: foo.
weight_mg jump_length_cm
0.6 8.5
1.0 9.6
2.3 13.7
3.5 13.2
5.2 11.0
7.1 8.3
8.4 10.9
9.2 14.3
10.0 21.1

Equation 2.1

\[ y = 0.15\cdot x^3 - 2.2\cdot x^2 + 8.8 \cdot x + 3.2 \tag{2.1}\]

Figure 2.1: foo.
Figure 2.2: foo.

2.5 Alternatives

Further tutorials and R packages on XXX

2.6 Glossary

term

what does it mean.

2.7 The meaning of “Models of Reality” in this chapter.

  • itemize with max. 5-6 words

2.8 Summary

References