Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

2,483 results for “from:Liaw, Andy”

r-announce (was RE: [R] about multtest...)
Liaw, Andy · Apr 23, 2003 · r-help

> From: Thomas Lumley [mailto:tlumley at u.washington.edu] > > Please don't send these messages to r-announce. r-announce is for > announcements. Isn't r-announce supposed to be moderated? I posted to r-announce about a minor update...

Fracpoly
Liaw, Andy · Nov 20, 2003 · r-help

> From: Uwe Ligges [mailto:ligges at statistik.uni-dortmund.de] > > Ercan971 at aol.com wrote: > > > > How can I find the Fracpoly-Package? > > Thanks!! > > I don't know of any "fracpoly" package in R. There is a set > of S(-PLUS...

counting number of objects in a list
Liaw, Andy · Jun 8, 2004 · r-help

Lists in the S language are like vectors, so length(mylist) would tell you how many components there are in mylist. Beware, though, that lists can well be nested... Andy > From: Vumani Dlamini > > Dear R-users; > > I am interested in...

randomize the order of rows in a matrix or table
Liaw, Andy · Dec 8, 2004 · r-help

mydata <- mydata[sample(nrow(mydata)), ] Andy > From: Andreas > > Hello, > > is there any function to randomize the order of rows in > matrix. My dataset > for suport vector mashines is in the order first the samples > of class1 and > then the samples...

.Rdata file size
Liaw, Andy · Jan 6, 2004 · r-help

No. I've dealt with .RData files in excess of 1GB several times. The limit is likely with your hardware, which you did not specify. Andy > From: Mike Jones > > Is there a limit to this? I'm working with a...

hardware question: ClearSpeed
Liaw, Andy · May 5, 2006 · r-help

Hi all, Does anyone have experience with the ClearSpeed hardware (see http://www.cleearspeed.com <http://www.cleearspeed.com> )? Any idea whether R can benefit from such hardware (say with distributed computing packages such as snow, Rpvm, Rmpi, etc.)? Best...

gauss.hermite?
Liaw, Andy · May 27, 2004 · r-help

That sounds like one of Jim Lindsay's packages, for which there's link on CRAN to his web page. They are not on CRAN. Andy > From: Spencer Graves > > The search at www.r-project.org mentioned a function > "gauss...

R: simulation
Liaw, Andy · Mar 4, 2005 · r-help

See ?set.seed. Andy > From: Clark Allan > > hi all > > a simple question > > i want to run simulations in r. i however want the experiments to be > repeated at a later time with exactly the same numbers by other users. > can...

typo in R-admin
Liaw, Andy · Jun 24, 2004 · r-devel

Just want to point out what seems to be a typo in R-admin.texi (still there in R-devel snapshot of 2004-06-24). Line 1698 of R-admin.texi probably should read: @section Java Virtual Machines on Mac...

installing problems repeated.tgz linux
Liaw, Andy · Jul 26, 2004 · r-help

> From: Christian Schulz > > Hi, > > i try several possibilities adn looking in the archive, > but didn't getting success to install j.lindsey's usefuel "library > repeated" on my linux (suse9.0 with kernel 2.6.7,R.1.9.1...

Concatenate vector into string
Liaw, Andy · Mar 4, 2005 · r-help

See ?paste, e.g., > char <- c("a", "b", "c") > paste(char, collapse="") [1] "abc" Andy > From: Matthieu Cornec > > Hello, > > I would like to convert c("a","b","c") into "abc". > Anyone could help? > Thanks, > > Matthieu Cornec > > ______________________________________________ > R-help at stat...

confidence interval in local polynomial regression
Liaw, Andy · Mar 12, 2004 · r-help

The predict method for locfit object (in the `locfit' package) can do this. For details, see Loader's book. HTH, Andy > From: Z P > > Dear all, > > Is there any package or function can do the pointwise > confidence interval > and confidence...

xyplot
Liaw, Andy · Nov 7, 2003 · r-help

Need to wrap the xyplot() in print(), as in print(xyplot(...)) Andy > From: Dr. Peter Schlattmann > > Dear all, > > I am trying to use xyplot inside a function > > plotme<-function(dataframe) > { > xyplot(x~y|z,data=dataframe) > } > > x,y,z are...

trim a string
Liaw, Andy · Jun 17, 2005 · r-help

http://finzi.psych.upenn.edu/R/Rhelp02a/archive/14493.html Andy > From: Omar Lakkis > > How to trim the leading and trailing white space off of a string? > > If the variable is " E " I need to convert it to "E". > > ______________________________________________ > R...

reading in only one column from text file
Liaw, Andy · Mar 7, 2006 · r-help

read.table("datafile", colClasses=c("NULL", "numeric"), ...) or something like that. Andy From: mark salsburg > > How do I manipulate the read.table function to read in only > the 2nd column??? > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at stat.math.ethz...

is there a function like %in% for characters?
Liaw, Andy · Apr 2, 2005 · r-help

I suppose here's one way: > hasChar <- function(x, y) { length(grep(x, y)) > 0 } > hasChar("a", "abcd") [1] TRUE > hasChar("e", "abcd") [1] FALSE Andy > From: Terry Mu > > like: > > "a" %in% "abcd" > TRUE > > Thanks. > > ______________________________________________ > R-help at stat.math...

inverse function of order()
Liaw, Andy · Oct 4, 2004 · r-help

r[order(o)] seems to work alright... Andy > From: Wolfram Fischer > > I have: > > d <- sample(10:100, 9) > o <- order(d) > r <- d[o] > > How I can get d (in the original order), knowing only r and o? > > Thanks - Wolfram...

Random Forest
Liaw, Andy · Jan 25, 2008 · r-help

From: Bill Vorias > Is there an Interaction function in the Random Forest > algorithm in the current version of R? No (at least not in the randomForest package). Prof. Breiman regarded that feature as "experimental", and said he wouldn't mind...

building and installing a package in Windows
Liaw, Andy · Jun 15, 2004 · r-help

Please follow the instructions in readme.packages very, very, very, very carefully. Andy > From: Yev Kirpichevsky > > Thanks to everyone who responded to my 'Perl' problem! > Indeed, it wasn't > in the Path. > > I now have a different problem and would...

need hints on basic character string functions
Liaw, Andy · Apr 2, 2005 · r-help

See ?tolower and ?nchar. Andy > From: Terry Mu > > Hello, > > for now, I need to transform "A" to "a", and need to know > length of "ABC", etc. > > Please show me a starting point for character string functions. > > Thank you. > > ______________________________________________ > R-help...

Can't find what you're looking for? Try searching with Google .