make_dis_data {BayesDissolution}R Documentation

Class dis_data creation

Description

This function creates a data object of class dis_data.

Usage

make_dis_data(yRef, yTest)

Arguments

yRef

A data frame or matrix containing the dissolution data for the reference group data. The rows of the data set correspond to the individual dissolution runs. The columns of the data frame contains the individual run's dissolution measurements sorted in time.

yTest

A data frame or matrix containing the dissolution data for the test group data. The rows of the data set correspond to the individual dissolution runs. The columns of the data frame contains the individual run's dissolution measurements sorted in time.

Value

The function returns a data object of class dis_data.

Examples

### dis_data comes loaded with the package
### but need to update dis_data to be an object of class dis_data
new_dis_data <- make_dis_data(yRef = dis_data[dis_data$group == "Reference", -1],
                              yTest = dis_data[dis_data$group == "Test", -1])


[Package BayesDissolution version 0.2.1 Index]