Skip to content

Commit

Permalink
Updated table 1 to output mean bottom depth
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickPata committed Apr 25, 2022
1 parent d3ad79f commit 6bad177
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Scripts/4-Zooplankton_data_wrangling.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ save.image(file = here::here("Data_Output/zoop_data_for_regionalization_10252021
samp.sum <- zoopmeta %>%
group_by(Net.Type, Net.Mouth, Mesh.Size) %>%
summarise(n = n(), min.tow = min(Tow.Depth), max.tow = max(Tow.Depth),
mean.tow = mean(Tow.Depth), min.ratio = min(Tow.Ratio),
mean.tow = mean(Tow.Depth),
min.dep = min(Bottom.Depth), max.dep = max(Bottom.Depth),
mean.dep = mean(Bottom.Depth),min.ratio = min(Tow.Ratio),
max.ratio = max(Tow.Ratio), mean.ratio = mean(Tow.Ratio))
write.csv(file= "Data_Output/sampling_method_summary.csv", samp.sum)
Expand Down

0 comments on commit 6bad177

Please sign in to comment.