Re: [Rd] How to ensure -O3 on Win64

2012-12-29 Thread Prof Brian Ripley
On 28/12/2012 00:41, Simon Urbanek wrote: On Dec 27, 2012, at 6:08 PM, Matthew Dowle wrote: On 27.12.2012 17:53, Simon Urbanek wrote: On Dec 23, 2012, at 9:22 PM, Matthew Dowle wrote: Hi, Similar questions have come up before on the list and elsewhere but I haven't found a solution yet.

[Rd] reference Calling R from C++

2012-12-29 Thread KRISHNA2222
Hello Guys, I have been working on integrating R and C++. I have been looking for a nice reference book which deals with it. I got R-inside but the proper documentation is not available for that package. If anyone knows some book please let me know... Thank you. -- View this message in contex

Re: [Rd] bug in plot.ts?

2012-12-29 Thread Simone Giannerini
Dear all, I think I have found a buglet in plot.ts plot.ts(x=1,type="n") # correct: does not show the plot plot.ts(x=1,y=1,type="n") # not correct: does show the plot I did not investigate the problem in depth but it could be related to the switch xy.labels, in fact plot.ts(x=1,y=1,type="n"

Re: [Rd] bug in plot.ts?

2012-12-29 Thread Rui Barradas
Hello, You're right, it has to do with the argument xy.labels. The relevant lines in the source are (file src/library/stats/R/ts.R, function plot.ts) [...] n <- length(xy $ x) #-> default for xy.l(ines|abels) if(missing(xy.labels)) xy.labels <- (n <= 150)

Re: [Rd] bug in plot.ts?

2012-12-29 Thread Rui Barradas
Just to add, on documentation, to my previous post. The following illustrates my point. # This is the last instruction in the original post. plot.ts(x=1, y=1, type="n", xy.labels=FALSE) # does not show the plot plot.ts(x=1, y=1, xy.labels=FALSE) # does show the plot, does not label it, documen