Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions scripts/middle_margin_tests.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ library(ggplot2)
#import data
count_data <- readxl::read_excel(here('raw_data', 'zooplankton_count_data.xlsx'))

#filter it to the middle segment
# Filter it to the middle segment and remove the first subsamples

compare_data <- count_data %>%
filter(site %in% c("trevor_middle_margin", "trevor_middle_center"))
filter(site %in% c("trevor_middle_margin", "trevor_middle_center")) %>%
filter(
subsample_id != "trevor_middle_center_1" &
subsample_id != "trevor_middle_margin_1"
)
```

## Testing Assumptions
Expand Down
Loading