MarrPlotFeatures {marr}R Documentation

Plot percent reproducible sample pairs per feature for pairwise replicates from Marr function.

Description

This function plots a histogram showing the features along the y-axis and percent reproducible sample pairs per feature on the x-axis.

Usage

MarrPlotFeatures(
  object,
  xLab = "Percent reproducible sample pairs per feature",
  yLab = "Feature"
)

Arguments

object

a Marr object from Marr

xLab

label for x-axis. Default is 'Percent reproducible sample pairs per feature for pairwise replicates'.

yLab

label for y-axis. Default is 'Feature'

Value

A histogram will be created showing the features along the y-axis and percent reproducible sample pairs per feature on the x-axis.

Examples

data <- matrix(rnorm(2400), nrow=200, ncol=12)
data_Marr <- Marr(object = data, pSamplepairs=0.75,
                  pFeatures=0.75, alpha=0.05)
MarrPlotFeatures(data_Marr)


[Package marr version 1.3.0 Index]