search for: kademan

Displaying 8 results from an estimated 8 matches for "kademan".

Did you mean: caveman
2002 Nov 14
1
X11 resources
...ame thing as the title of a plot but rather is the character string visible to the window manager, and usually goes in a titlebar on top.) For example in Splus one can do > motif('-xrm "sgraphMotif*title: Hello World"') Is there a way of doing a similar thing in R? -- Ed Kademan 508.651.3700 PHZ Capital Partners 508.653.1745 (fax) 321 Commonwealth Road <kademan at phz.com> Wayland, MA 01778 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send...
2001 Dec 06
1
Scheme in R
...ot;Ihaka, Ross and Gentleman, Robert", title = "R: A Language for Data Analysis and Graphics", journal = "Journal of Computational and Graphical Statistics", year = 1996, volume = 5, number = 3, page = 299, month = sep} -- Ed Kademan 508.651.3700 PHZ Capital Partners 508.653.1745 (fax) 321 Commonwealth Road <kademan at phz.com> Wayland, MA 01778 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send...
2001 Nov 23
0
porting R package to Splus
...it might be possible to automatically transform that code to code that would build and work under Splus. Does that sound realistic? If so does anyone have a script of some kind that performs such a transformation? If not I may take a crack at it. Thanks for any pointers or suggestions. -- Ed Kademan 508.651.3700 PHZ Capital Partners 508.653.1745 (fax) 321 Commonwealth Road <kademan at phz.com> Wayland, MA 01778 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send...
2003 Apr 30
2
ylab in plot.POSIXct
I am using R-1.7.0 and have some data which consist of one vector of numbers and a second corresponding vector of dates belonging to the POSIXct class. I would like to plot the numbers against the dates. What is the best way to do this? It almost works to just call `plot.' However if I do this while using the `ylab' parameter I get a warning message: parameter "ylab"
1998 Nov 30
1
[R] R functionality
> Date: Mon, 30 Nov 1998 12:07:10 -0500 > From: Paul Gilbert <pgilbert@bank-banque-canada.ca> > To: Ed Kademan <kademan@phz.com> > > >Is there anything R can do that Splus can't? > > Problems which require lots of looping and cannot be re-coded as vector/matrix > operations are theoretically possible but practically infeasible in S, unless > they are coded in C or Fortran a...
2003 Apr 28
1
ylab in time series plot (PR#2869)
You get a warning message when you specify a ylab parameter while plotting data whose x's are POSIXct values. Apparently the `axis.POSIXct' method tries to reset the ylab---via the ... parameter---after it has already been set by higher level methods. Here is a function that illustrates the problem. ylabProblem <- function() { x <- ISOdate(2003, 4, 1:10) # POSIXct
1998 Nov 30
3
R functionality
Is there anything R can do that Splus can't? I know about the differences in the language but what about statistical functionality. Are there models you can build or graphs you can plot in R that you can't in Splus? My impression is that in this respect R is strictly a subset. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2000 Oct 02
9
the underscore ("_") in variable name
At 14:35 02/10/00 +0800, mohd zamri wrote: >new to R and starting to learn to program R. The underscore ("_") did some >suprising result. e.g > >> c <- c(1,2,3,4,5) >> mean(c) >[1] 3 >> c_mean <- mean(c) >> c >[1] 3 > >having some experience in C, I thought the underscore is "always" valid in >variable name. totally confuse