plot GC/LC-MS data as a heatmap with TIC

plotms(data, log = FALSE)

Arguments

data

imported data matrix of GC-MS

log

transform the intensity into log based 10

Value

heatmap

Examples

if (FALSE) {
library(faahKO)
cdfpath <- system.file('cdf', package = 'faahKO')
cdffiles <- list.files(cdfpath, recursive = TRUE, full.names = TRUE)
matrix <- getmd(cdffiles[1])
png('test.png')
plotms(matrix)
dev.off()
}