Re: [Rd] problem building R 2.12.1 64-bit on Windows 7

2010-12-30 Thread Michael Sumner
Hello, It seems the problem was as elementary as me mis-interpreting the instructions in 3.1.3 of the R Installation and Administration manual: "Look at ‘MkRules.dist’ and if settings need to be altered, copy it to ‘MkRules.local’ and edit the settings there." I took that to mean that you only c

Re: [Rd] problem building R 2.12.1 64-bit on Windows 7

2010-12-30 Thread Michael Sumner
Hello, thank you both - in an earlier test I turned off Kaspersky completely to check that but saw no difference, but I'm only going on my memory for that. I'll check again more completely later today and also try turning on the reporting for the sed line in MkRules as Duncan suggested. I don't h

Re: [Rd] problem building R 2.12.1 64-bit on Windows 7

2010-12-30 Thread peter dalgaard
On Dec 30, 2010, at 23:19 , Duncan Murdoch wrote: > On 10-12-30 4:13 PM, Michael Sumner wrote: >> Hello, >> ... >> make[4]: *** [Rzlib.dll] Error 4 >> make[3]: *** [rlibs] Error 1 >> make[2]: *** [../../bin/x64/R.dll] Error 2 >> make[1]: *** [rbuild] Error 2 >> make: *** [all] Error 2 > > I don'

Re: [Rd] problem building R 2.12.1 64-bit on Windows 7

2010-12-30 Thread Duncan Murdoch
On 10-12-30 4:13 PM, Michael Sumner wrote: Hello, I am stuck trying to build 64-bit R 2.12.1 on Windows 7, hopefully the problem is obvious and someone can point out what I'm missing. Well into the "make all recommended" process, I get an error: make[4]: *** [Rzlib.dll] Error 4 (A longer repo

[Rd] problem building R 2.12.1 64-bit on Windows 7

2010-12-30 Thread Michael Sumner
Hello, I am stuck trying to build 64-bit R 2.12.1 on Windows 7, hopefully the problem is obvious and someone can point out what I'm missing. Well into the "make all recommended" process, I get an error: make[4]: *** [Rzlib.dll] Error 4 (A longer report on the error in the build print is below -

Re: [Rd] key-value mapping in C inside R?

2010-12-30 Thread Hadley Wickham
Why not use a sparse Matrix package? Hadley On Thu, Dec 30, 2010 at 6:50 AM, Matteo Bertini wrote: > I'm testing some modifications in arima.c. > I've noticed that a big internal array of double (rbar) is usually sparse > and I'd like to add an option to store it as key-value mapping. > > Is ther

[Rd] minor outdated link error in MkRules.dist

2010-12-30 Thread Michael Sumner
Hello, The file [R]/src/gnuwin32/MkRules.dist contains the following link: http://www.stats.ox.ac.uk/pub/Rtools/goodies/local.zip It seems this has been updated to be http://www.stats.ox.ac.uk/pub/Rtools/goodies/Win32/local.zip This in R-patched_2010-12-27_r53886. Cheers, Mike. -- Michael

Re: [Rd] key-value mapping in C inside R?

2010-12-30 Thread Simon Urbanek
On Dec 30, 2010, at 11:25 AM, Matteo Bertini wrote: > Il giorno 30/dic/2010, alle ore 16.03, Simon Urbanek ha scritto: > >> On Dec 30, 2010, at 7:50 AM, Matteo Bertini wrote: >> >>> I'm testing some modifications in arima.c. >>> I've noticed that a big internal array of double (rbar) is usually

Re: [Rd] key-value mapping in C inside R?

2010-12-30 Thread Matteo Bertini
Il giorno 30/dic/2010, alle ore 16.03, Simon Urbanek ha scritto: > On Dec 30, 2010, at 7:50 AM, Matteo Bertini wrote: > >> I'm testing some modifications in arima.c. >> I've noticed that a big internal array of double (rbar) is usually sparse >> and I'd like to add an option to store it as key-v

Re: [Rd] key-value mapping in C inside R?

2010-12-30 Thread Simon Urbanek
On Dec 30, 2010, at 7:50 AM, Matteo Bertini wrote: > I'm testing some modifications in arima.c. > I've noticed that a big internal array of double (rbar) is usually sparse and > I'd like to add an option to store it as key-value mapping. > > Is there a library function or some other approach al

[Rd] key-value mapping in C inside R?

2010-12-30 Thread Matteo Bertini
I'm testing some modifications in arima.c. I've noticed that a big internal array of double (rbar) is usually sparse and I'd like to add an option to store it as key-value mapping. Is there a library function or some other approach already used inside the R core for key-value mappings? Thank