plot,proFIAset,ANY-method {proFIA}R Documentation

Plot a summary of an FIA experiment.

Description

Plot a summary of an FIA acquisition. This summary aims to provides an overview of the FIA acquisition and the processinf of FIA acquisition. It includes the following graphs :

Usage

## S4 method for signature 'proFIAset,ANY'
plot(x, type = c("sample", "class"), ...)

Arguments

x

A proFIAset object.

type

Shall the plotting be done by sample or by class for the barplot ?

...

Not used at the moment.

Value

Nothing

Examples

if(require("plasFIA")){
   data(plasSet)
   
   
   ####Diagnostic plot after imputation
   plot(plasSet)
   
   ####The same plot by classes.
   plot(plasSet,type="class")
   
   ####Diagnostic plot before imputation
   plasSet <- makeDataMatrix(plasSet)
  plot(plasSet)

}

[Package proFIA version 1.18.0 Index]