search for: l293

Displaying 4 results from an estimated 4 matches for "l293".

Did you mean: 293
2025 Jan 02
1
Possible issue in stats/arima.R package
...SS(x, mod) > > yet the log shows no recent changes. I'm not sure what's going on. Mystery solved: code like this appears several times in that file. In the occurrence here: https://github.com/wch/r-source/blob/4a1ed749271c52e60a85e794e6f34b0831efb1ae/src/library/stats/R/arima.R#L293 it does appear that the mod value isn't being used. Duncan Murdoch
2025 Jan 02
2
Possible issue in stats/arima.R package
...he log shows no recent changes. I'm not sure what's going on. > Mystery solved: code like this appears several times in that file. In > the occurrence here: > https://github.com/wch/r-source/blob/4a1ed749271c52e60a85e794e6f34b0831efb1ae/src/library/stats/R/arima.R#L293 > it does appear that the mod value isn't being used. > Duncan Murdoch Thank you, Norbert and Duncan. A little bit (unfinished) aRcheology showed that both parts have been in the arima code since Dec 11 2003 (when the code, i.e., the whole package 'ts') was moved / mer...
2017 Jul 20
0
error reporting and --xml
...veloping a gluster wrapper, and when using glusterfs-3.8.9-1 (on centos) with --xml, timeout errors have two issues: 1) the message is on stdout 2) the message is not formatted in XML I think the error is the use of cli_out() here: https://github.com/gluster/glusterfs/blob/master/cli/src/cli-cmd.c#L293 since cli_out() bypasses all the XML formatting output and writes directly to stdout. Moreover, when a "peer probe --xml" failed, its opRet was still set to zero and its error messsage was not in opErrstr: <cliOutput> <opRet>0</opRet> <opErrno>2</opErrno&...
2025 Jan 02
1
Possible issue in stats/arima.R package
On 2025-01-02 9:04 a.m., Norbert Kuder wrote: > 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