View source: R/make_dis_data.R
make_dis_data | R Documentation |
This function creates a data object of class dis_data.
make_dis_data(yRef, yTest)
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. |
The function returns a data object of class dis_data.
### 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])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.