R Code [show / hide]
jump_weight_tbl <- tibble(x = abs(rnorm(21, 3, 4)),
y = 10 + 1.2 * x + rnorm(21, 0, 2)) |>
mutate_all(round, 1) |>
rename(weight = x, jumplength = y)Last modified on 23. November 2025 at 08:41:10
“A quote.” — Dan Meyer
jump_weight_tbl <- tibble(x = abs(rnorm(21, 3, 4)),
y = 10 + 1.2 * x + rnorm(21, 0, 2)) |>
mutate_all(round, 1) |>
rename(weight = x, jumplength = y)jump_weight_non_linear_tbl <- tibble(x = abs(rnorm(32, 3, 4)),
y = 0.15*x^3 - 2.2*x^2 + 8.8*x + 3.2 + rnorm(32, 0, 1)) |>
rename(weight = x, jumplength = y)Further tutorials and R packages on XXX
what does it mean.