Description Usage Arguments Author(s) See Also Examples
Do retrospective analyses by creating new directories, copying model files, and iteratively changing the starter file to set the number of years of data to exclude.
1 2 3 | SS_doRetro(masterdir, oldsubdir, newsubdir='retrospectives',
subdirstart='retro', years=0:-5, overwrite=TRUE, extras="-nox",
intern=FALSE)
|
masterdir |
Directory where everything takes place. |
oldsubdir |
Subdirectory within |
newsubdir |
Subdirectory within |
subdirstart |
First part of the pattern of names for the directories in which the models will actually be run. |
years |
Vector of values to iteratively enter into the starter file for retrospective year. Should be zero or negative values. |
overwrite |
Overwrite any input files with matching names in the subdirectories where models will be run. |
extras |
Additional commands to use when running SS. Default = "-nox" will reduce the amound of command-line output. |
intern |
Display runtime information from SS in the R console (vs. saving to a file). |
Ian Taylor
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
# note: don't run this in your main directory--make a copy in case something goes wrong
mydir <- "C:/Simple"
## retrospective analyses
SS_doRetro(masterdir=mydir, oldsubdir="", newsubdir="retrospectives", years=0:-5)
retroModels <- SSgetoutput(dirvec=file.path(mydir, "retrospectives",paste("retro",0:-5,sep="")))
retroSummary <- SSsummarize(retroModels)
endyrvec <- retroSummary$endyrs + 0:-5
SSplotComparisons(retroSummary, endyrvec=endyrvec, legendlabels=paste("Data",0:-5,"years"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.