Mercurial > repos > mnhn65mo > regionalgam
diff autocorr-res_acf.R @ 0:5b126f770671 draft
Uploaded
author | mnhn65mo |
---|---|
date | Fri, 03 Aug 2018 08:28:22 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autocorr-res_acf.R Fri Aug 03 08:28:22 2018 -0400 @@ -0,0 +1,10 @@ +#!/usr/bin/env Rscript +library(nlme) +library(MASS) + +args = commandArgs(trailingOnly=TRUE) +load(args[1]) + +png('output-acf.png') +graph<-acf(residuals(mod,type="normalized")) +invisible(dev.off())