openintro (version 2.0.0)

babies_crawl: Crawling age

Description

Crawling age of babies along with the average outdoor temperature at 6 months of age.

Usage

babies_crawl

Arguments

Format

A data frame with 12 observations on the following 5 variables.

birth_month

A factor with levels corresponding to months

avg_crawling_age

a numeric vector

sd

a numeric vector

n

a numeric vector

temperature

a numeric vector

Examples

Run this code
# NOT RUN {
library(ggplot2)

ggplot(babies_crawl, aes(x = temperature, y = avg_crawling_age)) +
  geom_point() +
  labs(x = "Temperature", y = "Average crawling age")

# }

Run the code above in your browser using DataLab