# S3 print method
example_data
# print header info
print(example_data, show_header = TRUE)
class(example_data)
# Features/Analytes
head(ex_analytes, 20L)
# Feature info table (annotations)
ex_anno_tbl
# Search via `filter()`
dplyr::filter(ex_anno_tbl, grepl("^MMP", Target))
# Lookup table -> targets
# MMP-9
ex_target_names$seq.2579.17
# gender hormone FSH
tapply(example_data$seq.3032.11, example_data$Sex, median)
# gender hormone LH
tapply(example_data$seq.2953.31, example_data$Sex, median)
# Target lookup
ex_target_names$seq.2953.31 # tab-completion at console
# Sample Type/Source
table(example_data$SampleType)
# Sex/Gender Variable
table(example_data$Sex)
# Age Variable
summary(example_data$Age)
Run the code above in your browser using DataLab