Skip to content

Commit

Permalink
Fixed spelling in plot
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenharris-NOAA committed Aug 16, 2023
1 parent c7e2db2 commit fbdfac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plot-outputs-ecosim-ecospace-and-observed.R
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ num_catches = nrow(obsC.head)
fleets <- unique(sapply(strsplit(colnames(spaC_xY.a2), "__"), `[`, 1)) # Extract the part before "__" and get unique values
fleet_cols <- data.frame(fleet_name = fleets,
colors = rainbow(length(fleets)))
fleet_cols = rbind(fleet_cols, c("AVGERAGE", "gray60"))
fleet_cols = rbind(fleet_cols, c("AVERAGE", "gray60"))
fleet_cols$fleet_out = gsub('c_', 'REC_', fleet_cols$fleet_name)
fleet_cols$fleet_out = gsub('mm_', 'COM_', fleet_cols$fleet_out)
fleet_cols$fleet_out = gsub('_', ' ', fleet_cols$fleet_out)
Expand Down

0 comments on commit fbdfac5

Please sign in to comment.