We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to explain to user why this occurs
# Covariate example fulldat <- lakeWAplanktonTrans years <- fulldat[,"Year"]>=1965 & fulldat[,"Year"]<1975 dat <- t(fulldat[years,c("Greens", "Bluegreens")]) dat <- zscore(dat) covariates <- rbind( Temp = fulldat[years, "Temp"], TP = fulldat[years, "TP"]) covariates <- zscore(covariates) A <- U <- "zero" B <- Z <- "identity" R <- diag(0.16,2) Q <- "equalvarcov" C <- "unconstrained" model.list <- list(B=B,U=U,Q=Q,Z=Z,A=A,R=R,C=C,c=covariates) fit <- MARSS(dat, model=model.list)
Looks bad
plot(predict(fit, newdata=list(y=dat, c=matrix(5,2,120)), type="ytt1"))
Looks better
plot(predict(fit, newdata=list(y=dat, c=matrix(5,2,120)), type="ytt"))
Looks best
plot(predict(fit, newdata=list(y=dat, c=matrix(5,2,120)), type="ytT"))
The text was updated successfully, but these errors were encountered:
various #141 #143 #146
1a69ba5
* add notes
eeholmes
No branches or pull requests
Need to explain to user why this occurs
Looks bad
Looks better
Looks best
The text was updated successfully, but these errors were encountered: