Skip to content
Prev 384020 / 398502 Next

How to use R0 package?

class(length(x1))
"integer"

Your problem is thinking that begin=1 means you are passing begin as
an integer.
class(1)
"numeric"
class(1L)
"integer"

You should pass:  begin=1L, end=length(x1)

Best,
Eric
On Fri, May 22, 2020 at 3:31 PM Luigi Marongiu <marongiu.luigi at gmail.com> wrote: