plot: Plot a summary of an FIA experiment.

Description Usage Arguments Value Examples

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

1
2
## 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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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)

}

proFIA documentation built on March 20, 2021, 6 p.m.