https://github.com/cran/VarReg
Raw File
Tip revision: e35ecb6bb58670d5a56fa666c72f3eac2b414316 authored by Kristy Robledo on 24 April 2018, 11:45:28 UTC
version 1.0.2
Tip revision: e35ecb6
mcycle.R
#' mcycle dataset.
#'
#' A dataset containing 133 observations from a simulated motorcycle accident, used to test crash helmets.
#'
#' @format A data frame with 133 rows and 2 variables:
#' \describe{
#'   \item{times}{in milliseconds from time of impact}
#'   \item{accel}{in g, acceleration of the head}
#'   ...
#' }
#' @source Silverman, B. W. (1985) Some aspects of the spline smoothing approach to non-parametric curve
#'fitting. Journal of the Royal Statistical Society series B 47, 1-52.


#' @references Venables, W. N. and Ripley, B. D. (1999) Modern Applied Statistics with S-PLUS. Third Edition.
#' Springer.
#'@examples
#'library(VarReg)
#'data(mcycle)
#'attach(mcycle)
#'plot(times,accel)
"mcycle"
back to top