Re: [R] Multiple CPU HowTo in Linux?

2010-09-14 Thread Johnson, Cedrick W.
?multicore perhaps On 09/14/2010 10:01 AM, Edwin Groot wrote: Hello all, I upgraded my R workstation, and to my dismay, only one core appears to be used during intensive computation of a bioconductor function. What I have now is two dual-core Xeon 5160 CPUs and 10 GB RAM. When I fully load it,

Re: [R] R time series analysis

2010-09-05 Thread Johnson, Cedrick W.
You also may want to look at auto.arima in the 'forecast' package, which will return the best ARIMA model based on AIC/AICc/BIC values ?auto.arima hth c On 09/05/2010 06:02 PM, Stephan Kolassa wrote: Hi, basically, you know 5 periods later. If you use a good error measure, that is. I am

Re: [R] online documentation only?

2010-08-30 Thread Johnson, Cedrick W.
try help.start() that starts a local help process (within R) and open your browser to that local location. -c On 08/30/2010 03:53 PM, Bob McCall wrote: Greetings: I recently installed R 2.11.1 for windows. It seems that there is only online help now. Is there any way to get the local

Re: [R] Please sigh me out from the R-help. Thank you!

2010-08-29 Thread Johnson, Cedrick W.
https://stat.ethz.ch/mailman/listinfo/r-help At the bottom of the webpage. -c On 08/29/2010 03:58 AM, Kaigang Li wrote: [[alternative HTML version deleted]] __ R-help@r-project.org mailing list

[R] Axes=F and plotting dual y axes

2010-07-28 Thread Johnson, Cedrick W.
Howdy. Been running into a bit of trouble with plotting. Seems that axes=F is not working. Whenever I plot (either a dataframe or xts/zoo series) and I set axes=F along with xlab/ylab= I still get the default axes printed in my chart. Consider this: #Create some sample data, both 50 units of

Re: [R] Axes=F and plotting dual y axes

2010-07-28 Thread Johnson, Cedrick W.
That worked. Stupid me forgot that I had the stock ticker 'F' assigned in my workspace. Well.. guess I'll hit myself with a 2x4 now.. Thanks for your help guys.. -c On 07/28/2010 12:37 PM, Ben Bolker wrote: Johnson, Cedrick W.cedrickat cedrickjohnson.com writes: Howdy. Been running