Skip to content

Commit

Permalink
#159 adjust unit to tonnes
Browse files Browse the repository at this point in the history
  • Loading branch information
abennici committed Apr 7, 2023
1 parent 7e8dfb4 commit e244fb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ compute_gfcm_task_II_2<-function(ref_species,data){

data<-data%>%
group_by(EST_YEAR,EST_FS,EST_SPC)%>%
summarise(TOTAL_LANDING= sum(EST_LND_CATCH,na.rm=T),
summarise(TOTAL_LANDING= sum(EST_LND_CATCH,na.rm=T)/1000,
TOTAL_DISCARDS = 0,
TOTAL_CATCH = sum(EST_LND_CATCH,na.rm=T)
TOTAL_CATCH = sum(EST_LND_CATCH,na.rm=T)/1000
)%>%
ungroup()%>%
mutate(COMMENT="",
Expand Down

0 comments on commit e244fb3

Please sign in to comment.