I am using frequencyConnectedness package in which one function plotOverall genrates 3 graphs one after another on pressing enter to continue. I need to plot all three graphs into one graph. How to do this ?
For sample data kindly use the dataset "volatilities" which comes with frequencyConnectedness package.
library(frequencyConnectedness)
data(volatilities)
bounds=(pi+0.0001,pi/3,pi/10,0)
p=list(p = 4, type = "const")
ESTIMATE<- spilloverRollingBK12(volatilities, n.ahead = 100, no.corr = F, func_est = "VAR", params_est = p, window = 100, partition = bounds)
plotOverall(ESTIMATE)
The above command generates three graphs .Basically it generates one graph for each bound as i have defined three bounds it gives three graphs . I need to plot them all in one graph . How to do this ?