graph_check | R Documentation |
This function is used in the exported function model_fit_check to generate a graphical representation of the model fit
graph_check(data)
data |
This is the OD600 + pH data from a single well. Contains Columns for Sample.ID, Time, OD600, and pH. |
a ggplot2 object
## Not run: for( i in Sample.ID){
loop_data = data %>%
dplyr::filter(Sample.ID == i )
# graph check is set up to plot each well independantly
print(graph_check(loop_data))
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.