Displaying 20 results from an estimated 10000 matches similar to: "R-alpha: A Couple of Queries"
2002 Nov 16
0
Wishlist: allow NA values in medpolish (package 'eda') (PR#2298)
Full_Name: Frederic Schutz
Version: 1.6.1
OS: Linux
Submission from: (NULL) (128.250.252.193)
The subject says everything... This has already been proposed in
June 2001 (cf http://maths.newcastle.edu.au/~rking/R/help/01a/2333.html),
but no reply followed.
I attach the patch that I used on my system to add this feature
(including an updated help page), if it can help. Sorry, the
two
2003 Mar 10
1
Problem with example(medpolish) in R-devel
Today's R-devel has a problem in `example(medpolish)'. It appears that
the `plot.medpolish' method is not available. Here is the output and
traceback() after starting `R --vanilla':
> library(eda)
> example(medpolish)
mdplsh> deaths <- rbind(c(14, 15, 14), c(7, 4, 7), c(8, 2,
10), c(15, 9, 10), c(0, 2, 0))
mdplsh> dimnames(deaths) <-
1999 Jan 29
1
Re: follow-up
From r-help-owner at stat.math.ethz.ch Fri Jan 29 13:40 NZD 1999
Date: Thu, 28 Jan 1999 16:38:36 -0800 (PST)
From: "Gregory R. Warnes" <warnes at biostat.washington.edu>
To: royle at penguin.irm.r9.fws.gov
cc: R comments <r-help at stat.math.ethz.ch>
Subject: [R] Re: follow-up
MIME-Version: 1.0
.RData files are *not* machine-independent! Thus, it doesn't mean
2009 Oct 09
1
Any reference to Tukeyline algorithm?
Hi,
I am using "line" function to plot the line. And I would like to understand "Tukeyline" algorithm. Since, the line function is calling the Tukeyline algorithm(which is compiled code) using foreign function interface, I am not able to look into the source code of this algorithm. Can somebody help me out, so that I can refer the same.
Thanks in advance!!!
Thanks,
2009 Dec 16
2
What is the fastest way to see what are in an RData file?
Currently, I load the RData file then ls() and str(). But loading the file
takes too long if the file is big. Most of the time, I only interested what
the variables are in the the file and the attributes of the variables (like
if it is a data.frame, matrix, what are the colnames/rownames, etc.)
I'm wondering if there is any facility in R to help me avoid loading the
whole file.
1997 Aug 21
2
R-alpha: libf2c as a shared library
Ok, I did the following experiment
dyn.load("/usr/local/lib/libf2c.so.2.0")
dyn.load("try.so")
.Fortran("try", 10.5)
where try.so contains the following compiled subroutine
subroutine try(x)
double precision x
write(*,*) x
return
end
It worked just fine (at least here on my FreeBSD machine at home).
So it seems that it will be
1997 Oct 20
2
R-alpha: system() ok -- is.R() function
Martin
Your revisions to my S--R compatability code suggest that tempfile() is
in R after 0.49. I don't find that to be the case. It requires code from
Friedrich Leisch which still has to be added as of 0.50 alpha3.
Paul
_______
R : Copyright 1997, Robert Gentleman and Ross Ihaka
Version 0.50 Alpha-3 (August 8, 1997)
> exists("tempfile", mode = 'function')
[1] FALSE
>
1997 Sep 10
1
R-alpha: New Version Available
The newest version of R for Unix (version R-0.50-a4) is now (or will
soon be) available from the following sites.
NORTH AMERICA:
http://lib.stat.cmu.edu/R/Alpha
EUROPE:
ftp://ftp.stat.math.ethz.ch/R/
ftp://statlab.uni-heidelberg.de/pub/mirrors/auckland/R/
JAPAN:
ftp://ftp.u-aizu.ac.jp/pub/lang/R/
NEW ZEALAND:
ftp://stat.auckland.ac.nz/pub/R/
1997 Nov 26
1
R-alpha: Latin-1 characters (3)
>> ------------------------
>> R & R, any comments?
>> ------------------------
At present the parser makes the decision on what characters can go into
symbol names based on isalpha(c). If someone will send me a function -
say isidchar(c) which returns 1 for characters which can be in
identifiers and 0 otherwise, I will replace the current test with that.
Ross
1997 May 16
0
R-alpha: A Quick Way to Kill S ...
Start S and detach the directory at position 2.
S-PLUS : Copyright (c) 1988, 1996 MathSoft, Inc.
S : Copyright AT&T.
Version 3.4 Release 1 for Sun SPARC, SunOS 4.1.3_U1 : 1996
Working data will be in /users/rdev/ihaka/.Data
> search()
[1] "/users/rdev/ihaka/.Data"
[2] "/usr/local/pkg/splus/splus-3.4/splus/.Functions"
[3]
1998 Mar 25
2
R alpha/beta naming
Read this morning
>>> R : Copyright 1998, Robert Gentleman and Ross Ihaka
>>> Version 0.61.2 Alpha (March 15, 1998)
-----
So, there still is no "R beta" around....
- If I didn't know R, would I use a statistics software, if it was still
in alpha testing state?
- Is this really what we want to tell people about R?
More to the point:
I think, we could
1997 May 18
2
R-alpha: Eigenvalue Computation Query
I have been looking at the "eigen" function and have reintroduced the
ability to compute (right) eigenvalues and vectors for non-symmetric
matrices. I've also made "eigen" complex capable.
The code is based on the eispack entry points RS, RG, CH, CG (which is
what S appears to use too). The problem with both the S and R
implementations is that they consume huge amounts
1997 Jul 22
7
R-alpha: New version of R for testing
The newest version of R for Unix (version 0.50 alpha-1) is now (or will
soon be) available from the following sites.
NORTH AMERICA:
http://lib.stat.cmu.edu/R/Alpha
EUROPE:
ftp://ftp.stat.math.ethz.ch/R/
ftp://statlab.uni-heidelberg.de/pub/mirrors/auckland/R/
JAPAN:
ftp://ftp.u-aizu.ac.jp/pub/lang/R/
NEW ZEALAND:
ftp://stat.auckland.ac.nz/pub/R/
1997 Aug 07
1
R-alpha: Colors
Here is a proposal:
At present when you specify a color with an integer it is taken as an
index into a fixed table of 8 colors.
1=red, 2=green, 3=blue, 4=cyan,
5=magenta, 6=yellow, 7=white, 8=black
[At least this is the intention, there may be bugs in the
implementation]. Since I am looking at this anyway (to see if I can
see the bug that Martin and Kurt have mentioned) I thought I might
2018 Jan 19
1
bug fix integer overflow in medpolish function
Dear R team
I noticed a bug in the "medpolish" function in the "stats" package.
When I run medpolish(x), with "x" the matrix in the attached .rda file,
I get this rather cryptic error:
"Error in if (converged) break : missing value where TRUE/FALSE needed
In addition: Warning message:
In sum(abs(z), na.rm = na.rm) : integer overflow - use
1997 Apr 24
2
R-alpha: Postscript bug ...
Jeez I dunno - it compiles perfectly and you guys get excited just because
it doesn't work :-)
I have to admit to being baffled about what happened (I'm SURE this was
working not long ago), but here is a quick fix. The problem is in the
function "GetCharInfo" in the file src/unix/PostScript.c.
The fix is to change the statement
if(nchar < 0)
return 0;
to
if(nchar <
1998 Nov 16
2
0.63 missing .pl files in etc?
Just grabbed the R-0.63.tar.gz from CRAN. Again during the build make
fails. bin/build-help did not have exec permissions. After that, it
failed for missing *.pl files called from build-help. I just copied
them from an R-devel I had. Then make docs worked. However,
LibIndex was not built. I am on an hpux-pa1.1-hpux-10.20 using egcs:
gcc version egcs-2.92.18 19981101 (gcc2 ss-980609 experimental)
1998 Nov 16
2
0.63 missing .pl files in etc?
Just grabbed the R-0.63.tar.gz from CRAN. Again during the build make
fails. bin/build-help did not have exec permissions. After that, it
failed for missing *.pl files called from build-help. I just copied
them from an R-devel I had. Then make docs worked. However,
LibIndex was not built. I am on an hpux-pa1.1-hpux-10.20 using egcs:
gcc version egcs-2.92.18 19981101 (gcc2 ss-980609 experimental)
1997 Aug 05
3
R-alpha: Version 0.50-a1 patches
A set of patches for R-0.50-a1 is now available as
ftp://stat.auckland.ac.nz/pub/R/R-0.50-a1.patch1.gz
The patches mainly fix problems reported since R-0.50-a1 but some
older problems are also fixed.
Here is the list of changes.
Ross
o Many subsetting and mutation problems with the new "expression" type
have now been fixed.
o When ask=T is set in par() the user is instructed
1997 Oct 17
1
R-alpha: system() NOT ok
Why does parse not work below and why does assigning it crash R?
Paul
________
$ R
R : Copyright 1997, Robert Gentleman and Ross Ihaka
Version 0.50 Alpha-3 (August 8, 1997)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type "license()" for details.
> system("date \'+%Y %m %d %H %M %S\'",