Displaying 20 results from an estimated 220 matches for "heiberg".
Did you mean:
hedberg
2004 Aug 21
0
review by statistician/ Heiberger and Holland
System Info:
OS: linux Mandrake 9.1
R Version 1.8.1 (2003-11-21),
GNU Emacs 21.2.93.1
Browser Mozilla firefox
-----------------
Colleagues
Has anyone written a review of this book?
Statistical Analysis and Data Display: An Intermediate Course with
Examples in S-PLUS, R, and SAS.
Richard M. Heiberger and Burt Holland
<http://www.insightful.com/news_events/webcasts/pharm04/heiberg
er.asp>
I can't find a review on the web yet, except for publisher type
reviews, e.g.
<http://bookwebpro.kinokuniya.co.jp/booksea.cgi?ISBN=038740270
5&USID=>.
I'm really interested in a re...
2006 Aug 30
0
Version 1.2-0 of the Rcmdr package
...from Excel, Access or dBase files (contributed
by Samir Messad, Renaud Lancelot and Matthieu Lesnoff).
o Added ability to read data from the clipboard (suggested by Graham
Smith).
o Added "Data -> Active data set -> Stack variables in active data set"
(suggested by Richard Heiberger).
o Added many probability distributions, courtesy of Miroslav Ristic and
G. Jay Kerns, Andy Chang, and Theophilius Boye.
o Added dialogs to sample from probability distributions; divided
distributions menus into Continuous and Discrete.
o Added totPercents function. Added...
2006 Aug 30
0
Version 1.2-0 of the Rcmdr package
...from Excel, Access or dBase files (contributed
by Samir Messad, Renaud Lancelot and Matthieu Lesnoff).
o Added ability to read data from the clipboard (suggested by Graham
Smith).
o Added "Data -> Active data set -> Stack variables in active data set"
(suggested by Richard Heiberger).
o Added many probability distributions, courtesy of Miroslav Ristic and
G. Jay Kerns, Andy Chang, and Theophilius Boye.
o Added dialogs to sample from probability distributions; divided
distributions menus into Continuous and Discrete.
o Added totPercents function. Added...
2009 Aug 30
0
version 1.5-1 of Rcmdr package released
...oblem reported by Peter
Dalgaard).
o Improved error checking and protection in distributions dialogs.
Version 1.4-3
o Fixed a bug in the scroll-bar for the RHS of model formulas (reported
by Ulrich Halekoh).
o Fixed problem with some legends in plotMeans() (reported by Rich
Heiberger).
o Updated Spanish translation (courtesy Rcmdr Spanish translation team).
Version 1.4-4
o Small changes to Hist() to make it more flexible (suggested by Gilles
Marcou).
Version 1.4-5
o Change to Message(), which posts messages to the Message window, to
prevent the wi...
2006 Sep 01
2
Compiling a package
...a-information ... OK
* removing junk files
Error: cannot open file 'Rcmdr.HH/DESCRIPTION' for reading
file Rcmdr.HH/DESCRIPTION is there,
Package: Rcmdr.HH
Type: Package
Title: Rcmdr support for the introductory course at Temple University.
Version: 1.2
Date: 2006-08-04
Author: Richard M. Heiberger, with contributions from Burt Holland.
Maintainer: Richard M. Heiberger <rmh at temple.edu>
Depends: R (>= 2.1.0), Rcmdr, car, multcomp, leaps, lattice, grid
Description: Our introductory course spends time on several topics
that are not yet in the R Commander. Therefore we wrot...
2019 Jun 14
4
inappropriate warning in latticeExtra
...<- xyplot(1 ~ 1)
> c(a,a)
Warning message:
In formals(fun) : argument is not a function
Can we have it in R-3.6.1 that Peter just announced?
Rich
On Mon, Apr 2, 2018 at 4:08 AM Deepayan Sarkar
<deepayan.sarkar at gmail.com> wrote:
>
> On Fri, Mar 23, 2018 at 7:58 AM, Richard M. Heiberger <rmh at temple.edu> wrote:
> > The warning message in the last line of this email is incorrect.
> > This is behavior which Duncan Murdoch labeled a bug in
> > https://stat.ethz.ch/pipermail/r-help/2017-December/450494.html
>
> Yes, sorry, this has been fixed in th...
2019 Dec 06
1
inappropriate warning in latticeExtra
...03
svn rev 77513
language R
version.string R Under development (unstable) (2019-12-03 r77513)
nickname Unsuffered Consequences
Rich
On Sat, Jun 15, 2019 at 3:13 AM Deepayan Sarkar
<deepayan.sarkar at gmail.com> wrote:
>
> On Fri, Jun 14, 2019 at 6:42 PM Richard M. Heiberger <rmh at temple.edu> wrote:
> >
> > This is still not repaired in
> > R version 3.6.0 Patched (2019-05-17 r76528)
> > > library(latticeExtra)
> > > a <- xyplot(1 ~ 1)
> > > c(a,a)
> > Warning message:
> > In formals(fun) : argumen...
2007 Mar 28
0
Fwd: Re: documentation clarifications (PR#9586)
On 3/27/2007 11:36 PM, Richard M. Heiberger wrote:
> I verified that this is a difference in behavior in both the released 2.4.1 for Windows
> and the "2.5.0 Under development (unstable) (2007-02-10 r40690)" for Windows.
> In htmlhelp, the word "interaction" is clickable and goes to the interaction{lattice}
>...
2007 Mar 29
0
Fwd: Re: documentation clarifications (PR#9587)
On 3/28/2007 8:50 AM, Duncan Murdoch wrote:
> On 3/27/2007 11:36 PM, Richard M. Heiberger wrote:
>> I verified that this is a difference in behavior in both the released 2.4.1 for Windows
>> and the "2.5.0 Under development (unstable) (2007-02-10 r40690)" for Windows.
>> In htmlhelp, the word "interaction" is clickable and goes to the interaction{...
2006 Apr 25
4
Help needed
Hi,
I am trying to change a SAS macro to R.
here is my code. I get an error at the last line.
attach(fram)
dset1<-cbind(AGE,BMI,DEATH)
> BMIGRP<-cut(BMI,breaks=3,right=TRUE)
> AGEGRP<-floor(AGE/10)-2
> dset<-cbind(AGEGRP,BMIGRP,DEATH)
> maxage<-max(dset[,1])
> minage<-min(dset[,1])
> #maxcls<-dset[,2]
> #mincls<-dset[,2]
>
2006 Dec 26
4
vectorizing an iterative process.
Hi Everyone,
I am stuck with a simple problem. Suppose I have a vector x, and I want
to calculate y[i]=3Dx[i+1]-x[i], it is very easy. I just need to write
y<-x[2:length(x)]-x[1:length(x)-1].
Now if I know y, and want to know the vector x defined by
x[i]=3Dx[i-1]+y[i-1] for all i, how can I do this without a loop?
Thanks,
Geoffrey
PS. Sorry if you see a duplicate message. The previous
2013 Sep 19
1
Vignette problem and CRAN policies
..... truncated]
Warning in odbcUpdate(channel, query, mydata, coldata[m, ], test = test, :
character data 'John Fox [aut, cre], Sanford Weisberg [aut], Douglas
Bates [ct
b], Steve Ellison [ctb], David Firth [ctb], Michael Friendly [ctb],
Gregor Gorja
nc [ctb], Spencer Graves [ctb], Richard Heiberger [ctb], Rafael
Laboissiere [ctb
], Georges Monette [ctb], Henric Nilsson [ctb], Derek Ogle [ctb], Brian
Ripley [
ctb], Achim Zeileis [ctb], R-Core [ctb]' truncated to 255 bytes in
column 'Autho
r'
Warning in odbcUpdate(channel, query, mydata, coldata[m, ], test = test, :
charac...
2011 Jun 10
4
running R commands asynchronously
I am interested in running R commands asynchronously.
My first choice is in the same R session that I am currently in.
Here, the goal would be to run something like
RunAsynchSameSession(myfunction(), "outputname.rda")
Once RunAsynchSameSession had started myfunction(),
RunAsynchSameSession would complete immediately. myfunction would
keep going. It is OK if execution of the
2016 Apr 18
2
Sum of Numeric Values in a DF Column
...na.rm=TRUE))
[1] 105 67 60 100 80
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Mon, Apr 18, 2016 at 10:07 AM, Richard M. Heiberger <rmh at temple.edu> wrote:
> ## Continuing with your data
>
> AA <- stringr::str_extract_all(dd[[2]],"[[:digit:]]+")
> BB <- lapply(AA, as.numeric)
> ## I think you are looking for one of the following two expressions
> sum(unlist(BB))
> sapply(BB, sum)...
2007 May 11
3
shell.exec() on Windows, unexpected behavior
I have Windows XP machines with different software configurations.
My laptop has Adobe Reader 8 and Adobe Acrobat 6.
My desktop has Adobe Reader 8 and does not have Adobe Acrobat.
On both machines, PDF extensions are registered to Adobe Reader 8.0,
and double-clicking a pdf file in Windows Explorer opens Adobe Reader
8.0.
In R-2.5.0, with all Adobe windows closed, the command
2016 Apr 18
0
Sum of Numeric Values in a DF Column
...ers,
> Bert
> Bert Gunter
>
> "The trouble with having an open mind is that people keep coming along
> and sticking things into it."
> -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
>
>
> On Mon, Apr 18, 2016 at 10:07 AM, Richard M. Heiberger <rmh at temple.edu> wrote:
>> ## Continuing with your data
>>
>> AA <- stringr::str_extract_all(dd[[2]],"[[:digit:]]+")
>> BB <- lapply(AA, as.numeric)
>> ## I think you are looking for one of the following two expressions
>> sum(unlist(BB...
2001 Apr 17
1
Pretty printing of frequency and other tables
I frequently use an S-Plus function print.char.matrix for
printing boxed tables. I use LaTeX even more frequently,
for which I (and Rich Heiberger) have a series of functions
that will be in the Hmisc library in R before too long.
[I have seen some other interesting functions for latex
already in R.] But it would still be nice to have
an equivalent of print.char.matrix in R for ordinary
printing. If anyone knows of anything close to it
pl...
2009 Jul 28
1
R Excel
Hi,
whenever
am trying to start R from excel, or by clicking the[ RExcel2007 with
RCommander] icon....., i got the following messages boxes :
SCTools not available
then:
there seems to be no R process connected
to excel
though both r and excel starts after I click the Icon!!
Please help
Hassan
[[alternative HTML version deleted]]
2010 Jun 09
2
combining expressions in mathplot
Is there a cleaner way of combining two expressions.
This example works and gives what I want
plot(1:10)
aa <- expression(alpha==.05)
bb <- expression(beta ==.80)
aabb <- expression(alpha==.05 ~ ", " ~ beta ==.80)
text(5, 10, aa)
text(5, 9, bb)
text(5, 8, aabb)
text(5,1, parse(text=paste(deparse(aa[[1]]), deparse(bb[[1]]), sep="~")))
text(5,2,
2012 Mar 16
3
Y-axis label on the right hand side in lattice?
Hello,
Is there a way to add ylab on the right hand side also (in lattice)?
Different from the left hand side?
Cheers
Saptarshi
[[alternative HTML version deleted]]