Using cyclocomp on expressions is a little clunky, since you always have to type cyclocomp(quote(expr)).
It would be convenient to have a cyclocomp_q function equivalent to this. This should work, but not fully tested:
cyclocomp_q <- function(expr) {
cyclocomp(substitute(expr))
}
Using
cyclocompon expressions is a little clunky, since you always have to typecyclocomp(quote(expr)).It would be convenient to have a
cyclocomp_qfunction equivalent to this. This should work, but not fully tested: