boxPlotD_HC {DAPAR}R Documentation

Builds a boxplot from a dataframe using the library highcharter

Description

Boxplot for quantitative proteomics data using the library highcharter

Usage

boxPlotD_HC(qData, dataForXAxis = "Label", labels = NULL,
  group2Color = "Condition")

Arguments

qData

A dataframe that contains quantitative data.

dataForXAxis

A vector containing the types of replicates to use as X-axis. Available values are: Label, Analyt.Rep, Bio.Rep and Tech.Rep. Default is "Label".

labels

A vector of the conditions (labels) (one label per sample).

group2Color

A string that indicates how to color the replicates: one color per condition (value "Condition") or one color per replicate (value "Replicate"). Default value is by Condition.

Value

A boxplot

Author(s)

Samuel Wieczorek

See Also

densityPlotD_HC

Examples

require(DAPARdata)
data(Exp1_R25_pept)
qData <- Biobase::exprs(Exp1_R25_pept)
types <- c("Label","Analyt.Rep")
dataForXAxis <- Biobase::pData(Exp1_R25_pept)[,types]
labels <- Biobase::pData(Exp1_R25_pept)[,"Label"]
boxPlotD_HC(qData, dataForXAxis, labels)

[Package DAPAR version 1.10.4 Index]