~ubuntu-branches/ubuntu/trusty/r-cran-sn/trusty

« back to all changes in this revision

Viewing changes to man/ais.Rd

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2014-01-14 06:28:00 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140114062800-yntgbps6kq5et10c
Tags: 1.0-0-1
* New upstream release

* debian/control: Add (Build-)Depends on r-cran-numderiv nomnormt (>= 1.3-1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%  file sn/man/ais.Rd  
 
2
%  This file is a component of the package 'sn' for R
 
3
%  copyright (C) 2004-2013 Adelchi Azzalini
 
4
%---------------------
1
5
\name{ais}
2
6
\alias{ais}
 
7
\docType{data}
 
8
\encoding{UTF-8}
3
9
\title{Australian Institute of Sport data}
 
10
\description{Data on 102 male and 100 female athletes collected at the 
 
11
Australian Institute of Sport, courtesy of Richard Telford and Ross Cunningham.
 
12
}
4
13
\usage{data(ais)}
5
 
\description{
6
 
  Data on 102 male and 100 female athletes collected at the Australian
7
 
  Institute of Sport, courtesy of Richard Telford and Ross Cunningham.
8
 
}
9
 
 
10
 
\format{
11
 
  A data frame with 202 observations on 13 variables.
 
14
\format{ 
 
15
  A data frame with 202 observations on the following 13 variables.
12
16
  \tabular{rll}{
13
 
    [, 1] \tab sex  \tab sex \cr
14
 
    [, 2] \tab sport\tab sport \cr
15
 
    [, 3] \tab rcc  \tab red cell count \cr
16
 
    [, 4] \tab wcc  \tab white cell count \cr
17
 
    [, 5] \tab Hc   \tab Hematocrit \cr
18
 
    [, 6] \tab Hg   \tab Hemoglobin \cr
19
 
    [, 7] \tab Fe   \tab plasma ferritin concentration \cr
20
 
    [, 8] \tab bmi  \tab body mass index, weight/(height)\eqn{^2}{�} \cr
21
 
    [, 9] \tab ssf  \tab sum of skin folds \cr
22
 
    [,10] \tab Bfat \tab body fat percentage \cr
23
 
    [,11] \tab lbm  \tab lean body mass \cr
24
 
    [,12] \tab Ht   \tab height (cm) \cr
25
 
    [,13] \tab Wt   \tab weight (Kg) \cr
 
17
   [,1]\tab \code{sex}\tab a factor with levels: \code{female}, \code{male}\cr
 
18
   [,2]\tab \code{sport}\tab a factor with levels:  \code{B_Ball}, 
 
19
            \code{Field}, \code{Gym}, \code{Netball}, \code{Row},\cr
 
20
       \tab\tab \code{Swim}, \code{T_400m}, \code{Tennis}, \code{T_Sprnt}, 
 
21
            \code{W_Polo}\cr
 
22
   [,3]\tab \code{RCC}\tab red cell count (numeric)\cr
 
23
   [,4]\tab \code{WCC}\tab white cell count (numeric)\cr
 
24
   [,5]\tab \code{Hc}\tab Hematocrit (numeric)\cr
 
25
   [,6]\tab \code{Hg}\tab Hemoglobin (numeric)\cr
 
26
   [,7]\tab \code{Fe}\tab  plasma ferritin concentration (numeric)\cr
 
27
   [,8]\tab \code{BMI}\tab body mass index, weight/(height)\eqn{^2}{²} 
 
28
       (numeric)\cr
 
29
   [,9]\tab \code{SSF}\tab sum of skin folds (numeric)\cr
 
30
   [,10]\tab \code{Bfat}\tab body fat percentage (numeric)\cr
 
31
   [,11]\tab \code{LBM}\tab lean body mass  (numeric)\cr
 
32
   [,12]\tab \code{Ht}\tab height, cm (numeric)\cr
 
33
   [,13]\tab \code{Wt}\tab weight, kg (numeric)\cr
26
34
  }
27
35
}
28
 
\source{
 
36
\details{The data have been made publicly available in connection with the
 
37
book by  Cook and Weisberg (1994).}
 
38
 
 
39
\references{
29
40
  Cook and Weisberg (1994),
30
41
  \emph{An Introduction to Regression Graphics}.                   
31
42
  John Wiley & Sons, New York.
32
43
}
 
44
 
33
45
\examples{
34
46
data(ais, package="sn")
35
 
attach(ais)
36
 
pairs(ais[,c(3:4,10:13)], main = "AIS data")
37
 
plot(Wt~sport)
 
47
pairs(ais[,c(3:4,10:13)], col=as.numeric(ais[,1]), main = "AIS data")
38
48
}
39
49
\keyword{datasets}