isocounts: Sample Count Data

Description Format Details Examples

Description

A sample of the kind of count data used by this package.

Format

A data frame with 1224 observations on the following 4 variables.

TimePoint

Day the observation was made on

Channel

Channel the observation was on (that is, how many “heavy” elements there were)

RT

Retention time the observation was made at

Count

Number of items observed

Details

Count data like this can be converted to relative abundances using relAbFromCounts.

Examples

1
2
3
4
5
6
7
8
data(isocounts)
head(isocounts)
counts <- within(isocounts,{
  Channel <- factor(Channel)
  TimePoint <- factor(TimePoint)
  logCount <- log10(Count)
})
coplot(logCount~RT|Channel*TimePoint, data=counts, show.given=FALSE)

HegemanLab/ProteinTurnover documentation built on May 6, 2019, 11:50 p.m.