scatterPlotEquivTestData: Provide a side-by-side scatter plot of two or three datasets...

Description Usage Arguments Examples

View source: R/plots.R

Description

Provide a side-by-side scatter plot of two samples for equivalence test.

Usage

1
2
scatterPlotEquivTestData(vecT, vecR, vecR1 = NULL, qa = "",
  labelT = "Test", labelR = "Reference", labelR1 = "Reference1")

Arguments

vecT

a vector of the sample for test product

vecR

a vector of the sample for reference product

vecR1

a vector of the sample for reference product R1

qa

a string representing the name of the quality attribute, default = ""

labelT

the name of the test product, default = "Proposed"

labelR

the name of the reference product, default = "Reference"

labelR1

label for reference product R1

Examples

1
2
3
4
5
vecT = rnorm(20,-1.5,1)
vecR = rnorm(20,0,1)
vecR1 = rnorm(20,0,1)
scatterPlotEquivTestData(vecT,vecR,labelT="T",labelR="R",qa="potency")
scatterPlotEquivTestData(vecT,vecR,vecR1,labelT="T",labelR="R",labelR1="R1",qa="potency")

equivalenceTest documentation built on May 1, 2019, 8:18 p.m.