Displaying 20 results from an estimated 10000 matches similar to: "FW: sum overflow (PR#1091)"
2003 May 22
4
grep, gsub, sub have problems with NA values (PR#3078)
In a string context, grep, gsub, sub are improperly treating NA (missing) as
the string "NA", and returning unexpected results
> grep("A", c(NA,"NA"))
[1] 1 2
# expected:
# [1] 2
> gsub("A", "X", c(NA,"NA"))
[1] "NX" "NX"
# expected
# [1] NA "NX"
> sub("A", "X",
2004 Feb 11
1
how much memory? was: R does in memory analysis only?
Is there a way to tell how much memory the computer
running R has?
-Frank
-----Original Message-----
From: David Smith [mailto:dsmith at insightful.com]
Sent: Monday, February 09, 2004 1:32 PM
To: Ross Boylan
Cc: r-help
Subject: RE: [R] R does in memory analysis only?
Ross Boylan writes:
> R works only on problems that fit into (real or virtual) memory.
> ... does S-Plus have the same
2002 Feb 07
2
FW: layout and piechart diameter problem (PR#1300)
Third try...
> -----Original Message-----
> From: Warnes, Gregory R
> Sent: Tuesday, February 05, 2002 4:12 PM
> To: 'R-bugs'
> Subject: layout and piechart diameter problem
>
>
> I've been using layout to create some graphics pages which include pie
> charts. (NB: No piechart arguments please, the main chart on the page is
> a proper bar chart
2003 Dec 09
3
latex problem with \preformatted (PR#5645)
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C3BE9C.3FB5BC1A
Content-Type: text/plain; charset="iso-8859-1"
There is a small bug in the implementation of \preformatted in R 1.8.0:
The closing "\end{verbatim}" needs to be followed by a newline, since my
latex
2004 Jan 16
0
FW: Announce: RPy version 0.3.3
> -----Original Message-----
> From: Warnes, Gregory R
> Sent: Friday, January 16, 2004 3:52 AM
> To: 'r-packages'; 'python-announce '; 'rsoap-talk'; 'Dan Nathan'; 'RPy
> List'
> Subject: Announce: RPy version 0.3.3
>
>
> RPy Version 0.3.3 is now available from the RPy home page at
> http://rpy.sf.net.
>
> What
2004 Jan 16
0
FW: Announce: RPy version 0.3.3
> -----Original Message-----
> From: Warnes, Gregory R
> Sent: Friday, January 16, 2004 3:52 AM
> To: 'r-packages'; 'python-announce '; 'rsoap-talk'; 'Dan Nathan'; 'RPy
> List'
> Subject: Announce: RPy version 0.3.3
>
>
> RPy Version 0.3.3 is now available from the RPy home page at
> http://rpy.sf.net.
>
> What
2004 Apr 19
0
New package: mcgibbsit, an MCMC run length diagnostic
Package: mcgibbsit
Title: Warnes and Raftery's MCGibbsit MCMC diagnostic
Version: 1.0
Author: Gregory R. Warnes <gregory_r_warnes at groton.pfizer.com>
Description:
mcgibbsit provides an implementation of Warnes & Raftery's MCGibbsit
run-length diagnostic for a set of (not-necessarily independent) MCMC
sampers. It combines the estimate error-bounding approach of Raftery
2004 Apr 19
0
New package: mcgibbsit, an MCMC run length diagnostic
Package: mcgibbsit
Title: Warnes and Raftery's MCGibbsit MCMC diagnostic
Version: 1.0
Author: Gregory R. Warnes <gregory_r_warnes at groton.pfizer.com>
Description:
mcgibbsit provides an implementation of Warnes & Raftery's MCGibbsit
run-length diagnostic for a set of (not-necessarily independent) MCMC
sampers. It combines the estimate error-bounding approach of Raftery
2003 Jan 31
0
Version 0.8.0 of the gregmisc package is now available
Version 0.8.0 of the gregmisc package is now (or will shortly be) available
on CRAN.
New in this release:
- Enhanced and bug-fixed 'CrossTable' function (contributed by
Marc Schwartz)
- Augmented the 'barplot2' function with an 'add' argument to allow for
the addition of a barplot to an existing graphic. (contributed by
Marc Schwartz)
- Added the
2004 Feb 16
1
xls2csv.pl: Script to translate Excel files into CSV
I've created a Perl script that translates Microsoft Excel (.xls) files into
comma-delimited text files (.csv) using the Perl Spreadsheet::ParseExcel
module.
Usage
-----
perl xls2csv.pl <excel file> [<output file>] [<worksheet number>]
Translate the Microsoft Excel spreadsheet file contained in
<excel file> into comma separated value format (CSV) and store
in
2002 May 14
0
FW: Summary of Suggestions for poor man's parallel processing
It turns out that my web host doesn't allow direct links. Try going to
http://www.warnes.net/downloads or getting it from the sourceforge snippet
library https://sourceforge.net/snippet/detail.php?type=snippet&id=101149.
-Greg
> -----Original Message-----
> From: Warnes, Gregory R [mailto:gregory_r_warnes at groton.pfizer.com]
> Sent: Monday, May 13, 2002 10:15 AM
> To:
2002 Oct 31
1
Re: gregmisc version 0.7.3 now available
Dear Greg,
Thanks for the new release. The decomposition of the SSQ is just what I need!
Regards,
Martin.
Martin Hoyle,
School of Life and Environmental Sciences,
University of Nottingham,
University Park,
Nottingham,
NG7 2RD,
UK
Webpage: http://myprofile.cos.com/martinhoyle
>>> gregory_r_warnes at groton.pfizer.com 10/30/02 07:16PM >>>
Version 0.7.3 of the gregmisc package
2005 Dec 12
1
FW: Bug in sum() with named data frame arguments
I got an email error message when I attempted to send this from my work
account. I have manually added it to the bug tracker, and am resending from
my personal account.
-G
On 12/12/05, Warnes, Gregory R <gregory.r.warnes@pfizer.com> wrote:
>
>
>
> > -----Original Message-----
> > From: Warnes, Gregory R
> > Sent: Monday, December 12, 2005 1:53 PM
>
2001 Sep 13
1
sum overflow (PR#1091)
Full_Name: Bill Simpson
Version: 1.2.3
OS: linux
Submission from: (NULL) (193.62.250.209)
I think I have found an accuracy problem with sum()
> a<-1:1000
> b<-1:1000
>
> crossprod(a,a)*crossprod(b,b)
[,1]
[1,] 1.114448e+17
> drop(.Last.value)
[1] 1.114448e+17
>
#this should give same answer as above
> sum(a*a)*sum(b*b)
[1] -652010736
#seems to be due to
2003 Sep 10
3
Off Topic: Good reference for sample size calculations
Hi All,
This is off topic, but we're drawing a blank here..
> In a presentation I'll be giving next week, I want to include a reference
> to a good general text on computing sample sizes for standard experiments.
> Can anyone recommend a good book to use for this purpose?
>
> Thanks,
>
> -Greg
LEGAL NOTICE\ Unless expressly stated otherwise, this
2002 Jan 25
3
make check fails when R_HOME env var set (PR#1284)
When the R_HOME environment variable is set, R issues a warning messages
when it starts up. When doing 'make check' this causes the check for
eval-etc.R to fail:
[...]
make[3]: Leaving directory
`/Volumes/app/R/src/R-1.4.0_patched_2002-01-24/tests'
running strict specific tests
make[3]: Entering directory
`/Volumes/app/R/src/R-1.4.0_patched_2002-01-24/tests'
running code in
2002 Feb 20
1
Bug in "[<-.matrix"? (Was: Feature Request: "matrix[1:10,1:10, block=F] <- 1:10")
Thanks to David Meyer [david.meyer@ci.tuwien.ac.at] and David Brahm
[brahm@alum.mit.edu] who suggested:
m[ cbind(index.i, index.j) ] <- vals
This works fine for the example I gave.
Unfortunately, this approach doesn't extend to using the row and column
names to make assignments:
> m <- matrix("",ncol=3,nrow=3)
> dimnames(m) <-
2002 Feb 22
0
FW: Cent. Mov. Ave
I recently wrote a function to compute functions over moving windows. (See
below). It varies from your request by using the last N points rather than
the last N/2 and next N/2 points, so you may have to modify it to get what
you want.
It will be in the next gregmisc package, which will go out in a month or so
when the publication review process here finishes. (I hate red tape!)
-Greg
2004 Jan 21
1
Please make lowess() generic (was: Reorganization of packages in the R distribution)
As I've mentioned a number of times. I find it very useful to have lowess()
become a generic function so that a lowess.formula() can be defined.
Below is a patch that makes both changes, as well as updating the
corresponding help documentation.
Gregory R. Warnes
Manager, Non-Clinical Statistics
Pfizer Global Research and Development
Tel: 860-715-3536
? DESCRIPTION
? Makefile
?
2004 Oct 14
2
Problem with R version 2.0.0 (and patched)
What I am doing : create a simple correlation matrix on 41 variables, then
plot an heatmap with this program :
library(gplots)
mat<-cor(temp.alln,use="pairwise.complete.obs")
hm<-heatmap.2(mat,symm=T)
HM<-format(round(mat[hm[[1]],hm[[2]]],2))
library(RColorBrewer)
brewer.pal(10,"Spectral")->mp
heatmap.2(mat, symm = TRUE, col = mp,