douglas: Multi-site Douglas-fir dataset

Description Format Details Examples

Description

Provenance test with measurements of height and circumference

Format

A dataframe with 1021 individuals and the following 9 variables

Details

The dataset includes measurements of height, circumference, angle and branching, for a progeny from 11 different origins which were planted in 1998 in 3 different sites.

Only 4 out of 11 origins are available in all the three sites.

Circumference was measured in all the three sites in 2013, but measurements of height were taken in 2002, 2003 and 2004 for site 3, and in 2005 for site 2. Measurements of angle and branching are only available for site 3.

The spacing between trees is different among sites, and in general between rows and columns. Coordinate units are meters.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
data(douglas)

## Individuals by origin and site
with(douglas, table(orig, site))

## Measurements by variable and site
library(tidyr)
library(dplyr)
douglas %>%
 gather(variable, value, H02:BR, na.rm = TRUE) %>% 
 with(., table(variable, site))
 
## Visualise trials
library(ggplot2)
ggplot(douglas, aes(x, y)) +
  geom_point() + 
  facet_wrap(~ site)
 

skayondo/breed_forest documentation built on Aug. 11, 2020, 12:35 a.m.