Results of an experiment comparing a rubber band travels to the amount it was stretched prior to launch.
Format
A data frame with 16 observations on the following 2 variables.
- stretch
amount rubber band was stretched before launch
- distance
distance rubber band traveled
Examples
data(RubberBand)
#> Warning: data set ‘RubberBand’ not found
gf_point(distance ~ stretch, data = RubberBand) %>%
gf_lm(interval = "confidence")
#> Warning: Using the `size` aesthetic with geom_ribbon was deprecated in ggplot2 3.4.0.
#> ℹ Please use the `linewidth` aesthetic instead.
#> Warning: Using the `size` aesthetic with geom_line was deprecated in ggplot2 3.4.0.
#> ℹ Please use the `linewidth` aesthetic instead.