Re: [R] Is simplify2array working for dimension > 2?

2024-02-09 Thread Jean-Claude Arbaut
isconceptions is > pretty difficult (or impossible!), and maybe adding that explicit > caveat would confuse others even more... :-( > > Cheers, > Bert > > > > > > > > > > On Thu, Feb 8, 2024 at 12:12 AM Jean-Claude Arbaut > wrote: > > > >

[R] Is simplify2array working for dimension > 2?

2024-02-08 Thread Jean-Claude Arbaut
portant: running R 4.3.2 on Debian 12.4. Best regards, Jean-Claude Arbaut [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read t

Re: [R] Error with installed.packages with R 3.4.0 on Windows

2017-04-29 Thread Jean-Claude Arbaut
Thank you all for the help. I will try the patch. Best regards, Jean-Claude Arbaut 2017-04-29 0:33 GMT+02:00 Duncan Murdoch <murdoch.dun...@gmail.com>: > On 28/04/2017 5:58 PM, Uwe Ligges wrote: > >> >> >> On 28.04.2017 19:10, Dimitri Liakhovitski wrote: >

[R] Error with installed.packages with R 3.4.0 on Windows

2017-04-27 Thread Jean-Claude Arbaut
3, so I wonder if there have been other changes in R, maybe the logical operators, that would make this function fail. Any idea? Best regards, Jean-Claude Arbaut [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To

Re: [R] C/C++/Fortran Rolling Window Regressions

2016-07-21 Thread Jean-Claude Arbaut
This may be useful: Sven Hammarling and Craig Lucas "Updating the QR factorization and the least squares problem" http://eprints.ma.man.ac.uk/1192/01/covered/MIMS_ep2008_111.pdf http://www.maths.manchester.ac.uk/~clucas/updating/ 2016-07-21 20:02 GMT+02:00 jeremiah rounds

Re: [R] Truncated file upon reading a text file with 0xff characters

2016-03-15 Thread Jean-Claude Arbaut
it seems) Thus the text connection does something more that causes a problem. Maybe it tries to translate characters twice? And this problem remains with read.table. Not surprising: by inspecting the source, I see it uses open(file "rt"). Jean-Claude Arbaut 2016-03-15 21:24 GMT+01:00 Du

[R] Truncated file upon reading a text file with 0xff characters

2016-03-15 Thread Jean-Claude Arbaut
happens. The file gets truncated almost as if 0xFF were an EOF character - which is perplexing, since I think that in C, 0xFF is sometimes (wrongly) confused with EOF. And with options(encoding="UTF-8"), I am not sure what happens. Questions: * What's wrong with options(encoding="

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Jean-Claude Arbaut
a <- as.ts(rnorm(20)) png("acf.png") a.acf <- acf(a) dev.off() # to see what is available names(a.acf) unclass(a.acf) 2016-03-06 20:06 GMT+01:00 Preetam Pal : > Thanks, Michael. Appreciate it. > But suppose I go for the plot, how to extract it from R ... say, I want to >