rootGrowth | R Documentation |
The length of roots was measured bi-weekly for 11 weeks. From week 0 to week 10, the roots were measured every two weeks, resulting in six repeated measurements for each root.
rootGrowth
A tibble with 180 observations (rows) and 4 variables (columns).
Column name | Data type | Description | Values | |
[,1] | week | numeric | Time of measurement in weeks | (0 - 10) |
[,2] | treatment | factor | 2 levels of treatments | (control, fertilizer) |
[,3] | root | numeric | Measured length of the root | (0.8443 - 12.4172) |
[,4] | plant | factor | 30 different plants | (ID1...ID115) |
The plants were grown under two different conditions:
15 roots were grown under normal conditions (control)
15 roots were grown under fertilized conditions (fertilizer).
This data is an extension of the data set fertilizer
in The R Book
.
fertilizer
# Summary of the control plants
idx_ctrl <- which(rootGrowth$treatment == "control")
summary(rootGrowth[idx_ctrl,])
# Summary of the plants treated with fertilizer
idx_treat <- which(rootGrowth$treatment == "fertilizer")
summary(rootGrowth[idx_treat,])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.