Closed efletcherPIFSC closed 1 year ago
Empirical recruitment JSON output lists it "recruits" values as a vertical column.
"recruitData": [ { "points": 8, "recruits": [ [0], [0], [0], [0], [0], [0], [0], [0] ] } ]
"recruit" values are expected to be formatted as a JSON array
"recruitlData": [ { "points": 8, "recruits": [0, 0, 0, 0, 0, 0, 0, 0] } ]
Dropping the index operator, returning "recruits" as a vector will resolve this.
Empirical recruitment JSON output lists it "recruits" values as a vertical column.
"recruit" values are expected to be formatted as a JSON array
Dropping the index operator, returning "recruits" as a vector will resolve this.