Displaying 6 results from an estimated 6 matches for "l256".
Did you mean:
256
2025 Jan 02
1
Possible issue in stats/arima.R package
...SS(x - xreg %*% coef[narma + (1L:ncxreg)], mod)
else arimaSS(x, mod)
It appears in both alternatives of the if statement.
This one is strange though: the code in the github mirror
(https://github.com/wch/r-source/blob/4a1ed749271c52e60a85e794e6f34b0831efb1ae/src/library/stats/R/arima.R#L256-L258)
is different:
mod <- makeARIMA(trarma[[1L]], trarma[[2L]], Delta, kappa, SSinit)
if(ncxreg > 0) x <- x - xreg %*% coef[narma + (1L:ncxreg)]
arimaSS(x, mod)
yet the log shows no recent changes. I'm not sure what's going on.
Duncan Murdoch
2025 Jan 02
1
Possible issue in stats/arima.R package
...1L:ncxreg)], mod)
> else arimaSS(x, mod)
>
> It appears in both alternatives of the if statement.
>
> This one is strange though: the code in the github mirror
> (https://github.com/wch/r-source/blob/4a1ed749271c52e60a85e794e6f34b0831efb1ae/src/library/stats/R/arima.R#L256-L258)
> is different:
>
> mod <- makeARIMA(trarma[[1L]], trarma[[2L]], Delta, kappa, SSinit)
> if(ncxreg > 0) x <- x - xreg %*% coef[narma + (1L:ncxreg)]
> arimaSS(x, mod)
>
> yet the log shows no recent changes. I'm not sure what...
2019 Sep 24
1
Implementation of custom USV solution driver from manufacturer
Dear Nut-Devs,
I have general question to the contribution and the handling of new code in the NUT-Project.
We would like to implement our USV-Solution as a driver to NUT, but we are having the problem, that
we need a powerful āCā-based gpio library for it.
We discussed this topic internally, and we are having the opinion, that it does make sense, to write this library separate from
a
2019 May 24
2
imap userdb Fatal setuid errors
...ac.macports.org/ticket/58506>
Code at https://github.com/dovecot/core/blob/master/src/lib/restrict-access.c <https://github.com/dovecot/core/blob/master/src/lib/restrict-access.c>:
https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L238-L256 <https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L238-L256>
https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L342-L346 <https://github.com/dovecot/core/blob/863887d4272f962926ab27...
2025 Jan 02
1
Possible issue in stats/arima.R package
Hello all,
I am running R version 4.4.2 (2024-10-31 ucrt) on Windows 10 x64, and
noticed something that might be a minor bug (or at least inconsistent code)
in the stats/arima.R package.
I have found:
1. A missing stop() call at line 69:
if (length(order) == 3) seasonal <- list(order = seasonal) else
("\'seasonal\' is of the wrong length")
it should be rather:
if
2025 Jan 02
2
Possible issue in stats/arima.R package
...imaSS(x, mod)
>>
>> It appears in both alternatives of the if statement.
>>
>> This one is strange though: the code in the github mirror
>> (https://github.com/wch/r-source/blob/4a1ed749271c52e60a85e794e6f34b0831efb1ae/src/library/stats/R/arima.R#L256-L258)
>> is different:
>>
>> mod <- makeARIMA(trarma[[1L]], trarma[[2L]], Delta, kappa, SSinit)
>> if(ncxreg > 0) x <- x - xreg %*% coef[narma + (1L:ncxreg)]
>> arimaSS(x, mod)
>>
>> yet the log shows no recent changes...