Skip to content

Commit

Permalink
Merge pull request #5 from cstawitz/master
Browse files Browse the repository at this point in the history
Update hake case study files
  • Loading branch information
ChristineStawitz-NOAA authored Aug 23, 2019
2 parents e178383 + 27a4a0e commit e0f35ef
Show file tree
Hide file tree
Showing 10 changed files with 3,550 additions and 1,328 deletions.
4 changes: 2 additions & 2 deletions HakeCaseStudy.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ knitr::include_graphics("C:/Users/chris/Documents/GitHub/RMAS/plots/ObsVsExpecte
```

```{r echo=FALSE}
rec_ss<- hake_out$parameters %>% filter(grepl("Recr",Label)) %>% select(Value)
rec_ss<- hake_out$parameters %>% filter(grepl("RecrDev",Label)) %>% select(Value)
rec_mas <- MAS %>% filter(grepl("recruitment",Name)) %>%
select(Value)
ind <- hake_out$startyr:hake_out$endyr
plot(NA, xlim=c(hake_out$startyr,hake_out$endyr),
ylim=c(-3,3), xlab="Year", ylab="Recruitment deviation")
points(rec_ss[1:length(ind),"Value"] ~ ind)
points(rec_ss[1:(length(ind)),"Value"] ~ ind)
lines(as.numeric(as.character(rec_mas$Value))~ind)
```
```{r echo=FALSE}
Expand Down
Loading

0 comments on commit e0f35ef

Please sign in to comment.