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
vcf.R
#' vcf dataset.
#'
#' A dataset containing 100 observations of mean velocity of circumferential fibre shortening (vcf), made by long axis and short axis echocardiography.
#'
#' @format A data frame with 133 rows and 3 variables:
#' \describe{
#'   \item{pid}{patient identifier}
#'   \item{vcflong}{vcf measurement from long axis}
#'   \item{vcfshort}{vcf measurement from short axis}
#'   ...
#' }
#' @source Data from Bland JM, Altman DG. (1986) Statistical methods for assessing agreement between two methods of clinical measurement. Lancet i, 307-310. (Supplied by Paul D'Arbela)


#'@examples
#'library(VarReg)
#'data(vcf)
#'attach(vcf)
#'plot(rowMeans(vcf[-1]),vcf$vcflong-vcf$vcfshort)
"vcf"
back to top