library(tibble)
pinos <- tibble(
id = 1:10,
especie = c(
"sylvestris", "nigra", "pinaster",
"sylvestris", "nigra", "pinaster",
"sylvestris", "nigra", "pinaster", "sylvestris"
),
dbh_cm = c(
30.5, 6.5, 7.2, 5.0, 28.3,
35.1, 7.0, 6.8, 40.0, 32.7
),
altura_m = c(
12.5, 13.2, 10.0, 9.5, 14.0,
15.0, 8.2, 11.8, 14.5, 12.0
)
)