Displaying 20 results from an estimated 10000 matches similar to: "glm code bug (PR#224)"
2007 Jul 03
1
termplot - changes in defaults
While termplot is under discussion, here's another proposal. I'd like to
change the default for partial.resid to TRUE, and for smooth to
panel.smooth. I'd be surprised if those changes were to break existing
code.
John Maindonald email: john.maindonald at anu.edu.au
phone : +61 2 (6125)3473 fax : +61 2(6125)5549
Centre for Mathematics & Its Applications, Room
2002 Aug 21
0
Population dynamicist job in Queensland, Australia
My apologies for he very short time before things close, but it's not my
fault. If necessary get your hat in the ring by Friday and see to the
niceties later, may I suggest.
This is a vacancy in my group in Cleveland. The work is interesting and the
challenges large.
Bill Venables.
----------------------------------------------------------------------------
Division of Marine Research
2000 Feb 29
1
Congratulations on the release of 1.0.0
I see Peter has just announced the release of 1.0.0, on time,
even here in Australia, in accordance with a timetable privately
announced about 6 months ago. At that time it seemed optimistic
to put it mildly.
I am not a member of the core team, but as an ordinary user of R
with a more privileged inside view than most I'd like to offer
my personal congratulations and thanks.
This is the
2002 Aug 07
0
RE: printed copies of "An Introduction to R"
Brian,
Thanks for doing this.
As the primary author, could I have a desk copy, please?
Bill Venables.
Bill Venables,
CMIS, CSIRO Marine Laboratories,
PO Box 120, Cleveland, Qld. 4163
AUSTRALIA
Phone: +61 7 3826 7251
Fax: +61 7 3826 7304
Mobile: +61 419 634 642
<mailto: Bill.Venables at csiro.au>
http://www.cmis.csiro.au/bill.venables/
-----Original Message-----
From: Brian
1999 Dec 16
1
R-0.90.1 buglet in R shell (PR#375)
I recently took "." off my PATH for security reasons and now find
that R does not work in my home directory where the .Renviron
file resides.
The fix is simple. In the R shell startup section replace
". .Renviron" by ". ./.Renviron". The relevant section is:
# Startup
if ${USE_R_ENVIRON}; then # use the one in current dir, or default
if [ -r .Renviron ]
then .
2007 Jan 07
1
substitute creates an object whichprints incorrectly (PR#9427)
> I think we should get rid of source attributes completely,
> since they are no longer needed, but your comment still
> applies to source references. We should strip them when code
> gets modified.
>
> Duncan Murdoch
I would be very concerned about losing source attributes-- it would
break a lot of my code :(! It's very useful to have a single portable R
object that
2002 May 18
0
Fish and 'must read' statistics books. My last word, promise!
I seem to have unwittingly stirred up a hornets' nest here, so let me have
one more say and leave it.
Firstly, congratulations to Renaud Launcelot, who seems to have a better
feel for wryness and irony in English than some of my native speaker
colleagues. Of course R A Fisher is a seminal writer, indeed close to the
founder of modern statistics and every aspiring statistician should read
2007 Jul 02
2
termplot with uniform y-limits
Does anyone have, or has anyone ever considered making, a version of
'termplot' that allows the user to specify that all plots should have
the same y-limits?
This seems a natural thing to ask for, as the plots share a y-scale. If
you don't have the same y-axes you can easily misread the comparative
contributions of the different components.
Notes: the current version of termplot
2007 Jul 02
2
termplot with uniform y-limits
Does anyone have, or has anyone ever considered making, a version of
'termplot' that allows the user to specify that all plots should have
the same y-limits?
This seems a natural thing to ask for, as the plots share a y-scale. If
you don't have the same y-axes you can easily misread the comparative
contributions of the different components.
Notes: the current version of termplot
2000 Dec 28
1
anova
> -----Original Message-----
> From: Cobalt [mailto:grosso at mail.ru]
> Sent: Friday, 29 December 2000 7:23
> To: r-help at r-project.org
> Subject: [R] anova
>
>
>
> ..Hello,
Well Hello, whoever you are. (In this list anonymous messages are
considered rather impolite. Next time please submit your message under your
real name as a gesture of good faith. For this
2005 Dec 21
3
NextMethod causes R 2.2.0 to crash (PR#8416)
I found writing the following default method the for the generic
function "julian" causes R to crash.
julian.default <- function(x, ...) {
x <- as.Date(x)
NextMethod("julian", x, ...)
}
Here is a test example
> m <- as.Date("1972-09-27") + 0:10
> m
[1] "1972-09-27" "1972-09-28" "1972-09-29"
1999 Apr 22
2
Assigning to a list within a loop (PR#175)
We noticed this bug in more complex code, but this succinctly
describes the phenomenon.
If you do not re-initialize a each time in the following loop,
the final value only is assigned to all places when the loop is
complete.
> a <- b <- list()
> for(i in 1:5) {
+ a$alpha <- i
+ b[[i]] <- a
+ }
> unlist(b)
alpha alpha alpha alpha alpha
5 5 5 5 5
If a is
2006 Feb 11
2
Arguments of 'transform'
If you would like a 10 second R puzzle, you might like to think about
this one:
> g <- expand.grid(long = 130:140, lat = -(10:25))
> gp <- transform(g, x = long, y = lat)
Error in transform(g, x = long, y = lat) :
object "long" not found
I don't expect this hasn't come up before, but I can't find mention of
it. I suggest that to minimise this little
2000 Oct 15
1
Re: I want to pull out an element from each of a list of matrices
At 18:26 14/10/00 +0100, Prof Brian D Ripley wrote:
>On Sat, 14 Oct 2000, niels Waller wrote:
>
>> Dear colleagues,
>>
>> I suspect there is a simple answer to this question -- but I cannot find
it.
>>
>> Suppose I have a list of matrices. I want to pull out an element (such as
>> row 1, col 2) from each matrix. Do I need a loop to do this? Or is
there
1999 Apr 03
2
tabulate causes segmentation fault (PR#156)
Peter,
I thought this one was noted and fixed, but I could be wrong.
R : Copyright 1999, The R Development Core Team
Version 0.63.3 (March 6, 1999)
....
[Previously saved workspace restored]
> tabulate(1:10, 5)
Process R:1 segmentation fault at Sat Apr 3 17:48:34 1999
--
(The following contact details become official on 1 May 1999, but
the email
2008 Apr 06
1
What to use for assignment, " = " or " <- "?
I've noticed an increasing tendency for people to use '=' rather than
the older '<-' symbol. When '=' became available as an assignment
operator in S-PLUS in the late '90s my first reaction was to switch to
it as well. Brian Ripley warned me that it was not a good idea. As
usual he was right, but it took a couple of pretty serious
finger-burning episodes
2005 Apr 30
3
as.numeric method for objects of class "difftime"
I have just become painfully aware that objects of class "difftime",
generated by the difference of two POSIXct objects, carry a "units"
attribute, which flashes by when the object is printed, for example.
The pain was occasioned when I tried to turn these objects into numberic
objects for use elsewhere as a covariate.
as.numeric(difftime object)
simply turns off the units
2006 Dec 22
5
substitute creates an object which prints incorrectly (PR#9427)
The function "substitute" seems to fail to make a genuine
substitution, although the printed verision seems fine. Here is an
example.
> m <- substitute(Y <- function(x) FUN(x+1),
+ list(Y = as.name("y"), FUN = as.name("sin")))
> m
y <- function(x) sin(x + 1)
> eval(m)
> y
function(x) FUN(x+1)
However the story doesn't end there. The
2006 Jan 14
2
initialize expression in 'quasi' (PR#8486)
This is not so much a bug as an infelicity in the code that can easily
be fixed.
The initialize expression in the quasi family function is, (uniformly
for all links and all variance functions):
initialize <- expression({
n <- rep.int(1, nobs)
mustart <- y + 0.1 * (y == 0)
})
This is inappropriate (and often fails) for variance function
"mu(1-mu)".
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