You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Helper function to set path to images to "/images" etc.
@@ -39,7 +39,6 @@ Necessary packages are first loaded into R, using the `library(<package>)` funct
39
39
40
40
*`tidyverse`
41
41
*`"growthrates"`
42
-
*`rstatix`
43
42
44
43
Custom function with the suffix `EDU` (`<function>_EDU()`) were designed for this tutorial and are combine functions from the package above. For educational purposes details can be found in the "Helper Function" section of this tutorial.
The code below shows how the functions described above can be use to reformat `raw_growth_data` into the dataframe that will be used for future analysis.
question("Does the relationship between `blank_LB` and `blank_MM` values make sense?",
160
+
answer("No, we would expect values to be identical"),
161
+
answer("Yes, LB medium is darker coloured that Minimal medium, so we expect the OD~600~ of LB to be slightly higher", correct = TRUE),
162
+
answer("No, Minimal medium is darker coloured that LB medium, so we expect the OD~600~ of MM to be slightly higher"),
163
+
answer("We have no way of knowing what these values might be")
164
+
)
165
+
```
166
+
118
167
## Plotting Growth Curves
119
168
_E. coli_ growth curves represent the optical density of cultures over time. The shape of these curves has been extensively characterized by the scientific community and plotting these curves can help identify irregularities or contamination.
120
169
121
-
We are generating these plots using the `ggplot2` package, wihich is part of the `tidyverse` library.
170
+
We are generating these plots using the `ggplot2` package, which is part of the `tidyverse` library.
The code below generates a graph showing all measured OD~600~ values over time. Using the `filter()` function, modify the code below to show only non-blank samples.
0 commit comments