Learn R Programming

HUM (version 2.0)

sim: desease data

Description

The data set corresponds to absolute (cells/mm2) or relative (percentage of the cell type in question of the entire inflammatory cell population) densities of 5 major inflammatory cell types in synovial tissue specimens from normal human joints (<U+201C>Normal<U+201D>) and from patients with osteoarthritis (<U+201C>OA<U+201D>), non-inflammatory orthopedic arthropathies (<U+201C>Orth.A<U+201D>), early unclassified arthritis (<U+201C>EA<U+201D>), rheumatoid arthritis (<U+201C>RA<U+201D>), and chronic septic arthritis (<U+201C>SeA<U+201D>). An analysis of this data set with binary and multicategory ROC analysis has been published in Della Beffa PLOS One 2013, which also contains additional details about the data set. The dataset consists of 92 cases with 11 features and disease code.

Usage

data(sim)

Arguments

Format

A data.frame containing 92 observations of 11 variables.

See Also

dataset

Examples

Run this code
# NOT RUN {
# load the dataset
data(sim)
# CD15
with(sim, by(CD15,Disease,mean))

# CD20
with(sim,tapply(CD20, Disease, FUN = mean))
with(sim, table(CD20=ifelse(CD20<=mean(CD20), "1", "2"), Disease))
# }

Run the code above in your browser using DataLab