Skip to content

Commit

Permalink
Updated test in Data Processing
Browse files Browse the repository at this point in the history
  • Loading branch information
Noonanav committed Oct 19, 2020
1 parent 92d6568 commit cb40529
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions inst/tutorials/growth_curve/growth_curve_analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@ well_data <- read_csv(system.file("resources/data", "well_information.csv", pack
## Data Processing
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.

The key steps in this process are:

1. `raw_growth_data` reformatting
+ Functions: `pivot_longer()`

2. Joining `growth_data` and `well_data`
+ Functions: `right_join()` and `filter()`

3. Calculating OD~600~ in "blank" wells at T~0~ to generate `blank_OD`

```{r data_reformating_setup}
library(tidyverse)
library("growthrates")
Expand Down

1 comment on commit cb40529

@ymkng
Copy link
Contributor

@ymkng ymkng commented on cb40529 Oct 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reviewed!

Please sign in to comment.