Skip to content

Commit cb40529

Browse files
committed
Updated test in Data Processing
1 parent 92d6568 commit cb40529

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

inst/tutorials/growth_curve/growth_curve_analysis.Rmd

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ well_data <- read_csv(system.file("resources/data", "well_information.csv", pack
5252
## Data Processing
5353
When analyzing data, it is often important to reformat and combine data sets for analysis or visualizations using specific packages or functions. We will use function from the `tidyverse` package to reformat, combine and filter OD~600~ and well information data accordingly.
5454

55+
The key steps in this process are:
56+
57+
1. `raw_growth_data` reformatting
58+
+ Functions: `pivot_longer()`
59+
60+
2. Joining `growth_data` and `well_data`
61+
+ Functions: `right_join()` and `filter()`
62+
63+
3. Calculating OD~600~ in "blank" wells at T~0~ to generate `blank_OD`
64+
5565
```{r data_reformating_setup}
5666
library(tidyverse)
5767
library("growthrates")

0 commit comments

Comments
 (0)