e2e_extract_hr {StrathE2E2} | R Documentation |
The function extracts the inshore, offshore and whole-domain values of harvest ratio (proportion of biomass captured per day) for each guild, from the results object generated by the e2e_run() function.
e2e_extract_hr(model, results, csv.output = TRUE)
model |
R-list object defining the model configuration compiled by the e2e_read() function. |
results |
R-list object generated by the e2e_run() function. |
csv.output |
Logical. If FALSE then disable writing of CSV output files - useful for testing (default=TRUE). |
Dataframe of harvest ratio values, rows = guilds, columns = zone
model <- e2e_read("North_Sea", "1970-1999") results<-e2e_run(model, nyears=2) harvest_ratio_data <- e2e_extract_hr(model,results,csv.output=FALSE)