step1_plot_desc {AccelStab} | R Documentation |
Plot Stability Data
Description
Plot raw accelerated stability data.
Usage
step1_plot_desc(
data,
y,
.time,
K = NULL,
C = NULL,
validation = NULL,
xname = NULL,
yname = NULL,
xlim = NULL,
ylim = NULL
)
Arguments
data |
Dataframe containing accelerated stability data. |
y |
Name of decreasing variable (e.g. concentration) contained within data |
.time |
Time variable contained within data. |
K |
Kelvin variable (numeric or column name) (optional). |
C |
Celsius variable (numeric or column name) (optional). |
validation |
Validation dummy variable (column name) (optional). |
xname |
Label for the x-axis (optional). |
yname |
Label for the y-axis (optional). |
xlim |
x-axis limits (optional). |
ylim |
y-axis limits (optional). |
Details
Plot the raw accelerated stability data by selecting the columns - response, time and temperature.
Value
Plot of raw accelerated stability data.
Examples
#load example datasets
data(antigenicity)
data(potency)
step1_plot_desc(data=antigenicity, y="conc", .time="time", C = "Celsius")
step1_plot_desc(data=potency, y="Potency", .time="Time", C = "Celsius")
[Package AccelStab version 2.0.1 Index]