summaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorSuraj Yerramilli2016-05-05 22:37:01 +0530
committerSuraj Yerramilli2016-05-05 22:37:01 +0530
commit52265603a039f627a216ca176abcc45b1d0bc5b0 (patch)
tree015430a6842722f5815b269139474e9ea4fc13b8 /R
parentbf66a6f2126c3f7d6138eb89cadb04b1e85003a8 (diff)
downloadSysID-R-code-52265603a039f627a216ca176abcc45b1d0bc5b0.tar.gz
SysID-R-code-52265603a039f627a216ca176abcc45b1d0bc5b0.tar.bz2
SysID-R-code-52265603a039f627a216ca176abcc45b1d0bc5b0.zip
changing plot parameters
Diffstat (limited to 'R')
-rw-r--r--R/idframe.R4
-rw-r--r--R/nonparam.R5
2 files changed, 5 insertions, 4 deletions
diff --git a/R/idframe.R b/R/idframe.R
index 3163292..b1a91c7 100644
--- a/R/idframe.R
+++ b/R/idframe.R
@@ -196,12 +196,12 @@ plot.idfrd <- function(x,col="steelblue",lwd=1){
yindex <- (i-1)%/%nin + 1;uindex <- i-nin*(yindex-1)
subtitle <- paste("From: u",uindex," to y",yindex,sep="")
g[[i]] <- ggplot(melt_df, aes(Frequency, value)) +
- geom_line(size=lwd,color=col) + scale_x_log10() +
+ geom_line(size=lwd,color=col) + scale_x_log10(expand = c(0.01,0.01)) +
facet_grid(variable ~ .,scale="free_y") +
theme_bw(14) + ylab("") + ggtitle(subtitle) +
xlab(ifelse(yindex==nout,"Frequency","")) +
theme(axis.title.x=element_text(color = "black",face = "plain"),
- title=element_text(size=12,color = "black",face="bold")) +
+ title=element_text(size=9,color = "black",face="bold")) +
geom_vline(xintercept=max(x$freq),size=1)
}
diff --git a/R/nonparam.R b/R/nonparam.R
index 0527cdc..c3fbaa8 100644
--- a/R/nonparam.R
+++ b/R/nonparam.R
@@ -108,7 +108,8 @@ plot.impulseest <- function(model,sig=2){
theme_bw(14) + ylab(ifelse(uindex==1,"IR Coefficients","")) +
xlab(ifelse(yindex==model$nout,"Lags","")) +
theme(axis.title=element_text(size=12,color = "black",face = "plain"),
- title=element_text(size=12,,color = "black",face="bold"))
+ title=element_text(size=9,,color = "black",face="bold")) +
+ scale_x_continuous(expand = c(0.01,0.01))
}
multiplot(plotlist=g,layout=plotseq)
}
@@ -145,7 +146,7 @@ step <- function(model){
theme_bw(14) + ylab(ifelse(uindex==1,"Step Response","")) +
xlab(ifelse(yindex==model$nout,"Lags","")) +
theme(axis.title=element_text(size=12,color = "black",face = "plain"),
- title=element_text(size=9,,color = "gray",face="bold"))
+ title=element_text(size=9,,color = "black",face="bold"))
}
multiplot(plotlist=g,layout=plotseq)
}