Re: [Rd] inappropriate warning in latticeExtra

2019-12-06 Thread Deepayan Sarkar
On Fri 6 Dec, 2019, 6:46 PM Richard M. Heiberger, wrote: > This problem is still present in > Yes, my bad. I'm traveling till Monday, but will get an update out as soon as possible after I'm back. -Deepayan > > version >_ > platform x86_64-w64-mingw32 > arch x8

[Rd] long vector support

2019-12-06 Thread Will L
All, At first glance, a recent commit to R-devel ( https://github.com/wch/r-source/commit/2c182014ecc8c2407a89092c9162d86046bd18da) appears to be related to long vector support. But as Henrik Bengtsson points out at https://github.com/HenrikBengtsson/Wishlist-for-R/issues/97#issuecomment-56265913

Re: [Rd] inappropriate warning in latticeExtra

2019-12-06 Thread Richard M. Heiberger
This problem is still present in > version _ platform x86_64-w64-mingw32 arch x86_64 os mingw32 system x86_64, mingw32 status Under development (unstable) major 4 minor 0.0 year 2019 month 12 day

Re: [Rd] Maybe bug? Using non-integer frequencies in stats::ts

2019-12-06 Thread Duncan Murdoch
To R-devel: I've sent this to Johann privately already; just in case anyone else is interested in this issue, here's what I wrote: Just started looking into it, and discovered this paragraph in ?ts: "The value of argument frequency is used when the series is sampled an integral number of time

Re: [Rd] Error in close.connection(p) : ignoring SIGPIPE signal

2019-12-06 Thread William Dunlap via R-devel
You may be running out of file descriptors because the pipe objects are not getting garbage collected often enough. Adding the line if (cnt %% 100 == 0) { cat(cnt, "\n"); gc() } to your loop lets it continue indefinitely. Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, Dec 6, 2019 at 4

Re: [Rd] Maybe bug? Using non-integer frequencies in stats::ts

2019-12-06 Thread Johann R. Kleinbub
Thank you for the quick follow up, Duncan. Unfortunately extend=TRUE is called internally in various instances such as when replacing parts of the time-series with window<-.ts Consider the following examples of time series with ugly values: x = 1:22 foo = ts(x, start = 1.5, end = 106.5, frequency

Re: [Rd] Error in close.connection(p) : ignoring SIGPIPE signal

2019-12-06 Thread Benjamin Tyner
Andreas, How right you are! Still, I find it curious that in the context of the while(TRUE) loop, I am allowed to do this 653 times, with failure on the 654th attempt. Perhaps there is something asynchronous going on? If I eliminate the looping, it does indeed fail (as expected) on the first