Skip to content

Commit

Permalink
edit code
Browse files Browse the repository at this point in the history
  • Loading branch information
lindseylabrie committed Dec 6, 2022
1 parent 0a76ae7 commit b1fc772
Show file tree
Hide file tree
Showing 9 changed files with 4,447 additions and 4,446 deletions.
8,882 changes: 4,441 additions & 4,441 deletions all_data.csv

Large diffs are not rendered by default.

Binary file modified individual_movement/48491.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified individual_movement/48728.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/AllIndividuals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/MaxDistancePlot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/TotalMovementPlot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified receiver_data/all_vemco_receivers.xlsx
Binary file not shown.
11 changes: 6 additions & 5 deletions silver_carp_telemetry.R
Original file line number Diff line number Diff line change
Expand Up @@ -245,14 +245,13 @@ All_Individuals <- rkm_tracker_date %>%
ggplot(aes(color=as.character(transmitter_id), group=transmitter_id,x=date, y=distance))+
geom_line(alpha=0.8)+
geom_point(shape=20, alpha=0.8) +
labs(y = "Distance Traveled, rkm",
x = "",
color = "Direction") +
labs(y = "Minimum Distance Traveled, rkm",
x = "") +
theme_classic()+
theme(legend.position="none")+
geom_hline(yintercept = 0, size=0.75)+
# ylim(-30,45)+
ggtitle("Silver Carp Movement Over Time")
ggtitle("Telemetered Silver Carp Movement Over Time")
ggsave(All_Individuals, file = "plots/AllIndividuals.png", dpi = 750, width = 5, height = 4,
units = "in")

Expand Down Expand Up @@ -781,6 +780,7 @@ ggsave(plot_48490, file = "individual_movement/48490.png", dpi = 750, width = 7,
## 48491 ##
id_48491 <- subset(rkm_tracker_date, transmitter_id == 48491)
plot_48491 <- ggplot(id_48491, aes(x=date, y=rkm))+
ylim(0,375)+
geom_point()+geom_line()+labs(title="ID # 48491")+
geom_hline(data=all_vemco_receivers, aes(yintercept=rkm),size=0.2, alpha=0.5)
ggsave(plot_48491, file = "individual_movement/48491.png", dpi = 750, width = 7, height = 5,
Expand Down Expand Up @@ -822,7 +822,8 @@ ggsave(plot_48727, file = "individual_movement/48727.png", dpi = 750, width = 7,
id_48728 <- subset(rkm_tracker_date, transmitter_id == 48728)
plot_48728 <-ggplot(id_48728, aes(x=date, y=rkm))+
geom_point()+geom_line()+labs(title="ID # 48728")+
geom_hline(data=all_vemco_receivers, aes(yintercept=rkm),size=0.2, alpha=0.5)
geom_hline(yintercept=0)
# geom_hline(data=all_vemco_receivers, aes(yintercept=rkm),size=0.2, alpha=0.5)
ggsave(plot_48728, file = "individual_movement/48728.png", dpi = 750, width = 7, height = 5,
units = "in")

Expand Down
Binary file modified tracking_data/active_tracking_points.xlsx
Binary file not shown.

0 comments on commit b1fc772

Please sign in to comment.