Last modified on 28. October 2025 at 15:38:28

“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 7.0
1.0 10.4
2.3 13.4
3.5 12.9
5.2 10.6
7.1 8.2
8.4 10.7
9.2 15.4
10.0 20.6

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 “Data Science” in this chapter.

  • itemize with max. 5-6 words

2.8 Summary

References