Babies: Simulated data set of baby growth

Description Usage Format Examples

Description

This dataset is an example of a repeated measures study where there are weight measurements every two months on six babies from 12 to 36 month.

Usage

1

Format

a data frame with 78 observations

Age

The age in months the observation was made at.

Baby

A number identifying which baby the observation was on.

Weight

The weight (in pounds) of the baby.

Examples

1
2
3
4
library(ggplot2)
ggplot(Babies, aes(x=Age, y=Weight, color=Baby)) +
  geom_point() +
  geom_line(aes(group=Baby))

dereksonderegger/dsData documentation built on Nov. 22, 2020, 5:15 p.m.