You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for developing this test - it is useful to my work and I'm still exploring it/ going thru the documentation.
However, I can't seem to adjust the minimum window parameter. Whether I specify a value higher or lower than the default, I get the same error message. In particular, the radf() function seems ok but not when I run the results e.g. diagnostics().
Grateful for any advice/help on this, pls.
# This works fine# (minw=17 is the default given my sample size; I'm including it here just for illustration)>radf_test<-radf(data, minw=17)
Using`date`asindexvariable.> diagnostics(radf_test)
Using`radf_crit`for`cv`.
── Diagnostics (option=gsadf) ───────────────── MonteCarlo ──
x1:RejectsH0atthe5% significancelevelx2:CannotrejectH0x3:RejectsH0atthe5% significancelevelx4:RejectsH0atthe5% significancelevel# Becomes problematic when I change minw>radf_test<-radf(data, minw=18)
Using`date`asindexvariable.> diagnostics(radf_test)
Using`radf_crit`for`cv`.Error:minimumwindowdoesnotmatch>radf_test<-radf(data, minw=16)
Using`date`asindexvariable.> diagnostics(radf_test)
Using`radf_crit`for`cv`.Error:minimumwindowdoesnotmatch
The text was updated successfully, but these errors were encountered:
Silly me- I did not realise I'd have to adjust the other values consistently if I deviate from the default values at the start.
All good now!
# So this is not good:>radf_test<-radf(data, minw=18)
> summary(radf_test)
Using`radf_crit`for`cv`.Error:minimumwindowdoesnotmatch# But this is fine:>radf_test<-radf(data, minw=18)
>radf_cv<- radf_mc_cv(n= nrow(data), minw=18) # probably good to create new variable> summary(radf_test, cv=radf_cv)
Hi,
Thanks for developing this test - it is useful to my work and I'm still exploring it/ going thru the documentation.
However, I can't seem to adjust the minimum window parameter. Whether I specify a value higher or lower than the default, I get the same error message. In particular, the radf() function seems ok but not when I run the results e.g. diagnostics().
Grateful for any advice/help on this, pls.
The text was updated successfully, but these errors were encountered: