Skip to content

Commit

Permalink
fixed time
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaracappa1 committed Aug 19, 2024
1 parent d1dc973 commit 87c8132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/process_atl_output.R
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ process_atl_output = function(param.dir,
tidyr::gather('time','atoutput',-polygon)%>%
dplyr::mutate(fleet = fleet.names[f],
species = fgs$LongName[s])%>%
dplyr::mutate(time = round(time/365,1))%>%
dplyr::mutate(time = round(as.numeric(time)/365,1))%>%
dplyr::select(species,fleet,polygon,time,atoutput)

}
Expand Down

0 comments on commit 87c8132

Please sign in to comment.