-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
compare.gmwm #199
Comments
The new feature will be in the github very soon. I will let you know when it's ready. |
perfect |
The output will look slightly different than the present |
@Wenchao-Yang : I need the feature to be PR'd before next week. The package needs to be updated on CRAN with the new developments. |
Check out: compare_models(estimated_model_one, estimated_model_two, estimated_model_three) in the latest development build. |
Hello, thx |
We actually merged this feature into As a result, I'm hesitant to resurrect the old plot. But, let me know. library('gmwm')
#> Loading required package: ggplot2
set.seed(8836)
x1 = gen_gts(1000, AR1(phi = .1, sigma2 = 1) + AR1(phi = 0.95, sigma2 = .1))
x2 = gen_gts(2000, AR1(phi = .1, sigma2 = 1) + AR1(phi = 0.95, sigma2 = .1))
GMWM1 = gmwm(AR1(), data = x1)
GMWM2 = gmwm(2*AR1(), data = x2)
compare_models(GMWM1, GMWM2, show.theo.wv = T, transparence = 0.2,
facet.label = c('model1', 'model2')) |
Hello Cheers |
Hello,
I am using this awesome function:
compare.gmwm(estimated_model_one, estimated_model_two, estimated_model_three, split = FALSE)
Unfortunately this line of code gives me an error, as I can only provide 2 models at a time. Would it be possible to have an unlimited number of models as input?
Thanks
Philipp
The text was updated successfully, but these errors were encountered: