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.

265 results for “from:Andy Bunn”

Kurtosis function
Andy Bunn · Dec 1, 2003 · r-help

The e1071 package does kurtosis. kurtosis(x, na.rm=FALSE) HTH, Andy

n-th power of a matrix
Andy Bunn · Nov 2, 2004 · r-help

Load the library first: > library(Malmig) > ?mtx.exp HTH, Andy

Conjugate function found disregard pervious posting...
Andy Bunn · Feb 18, 2004 · r-help

Sorry for the previous posting. I found the function in ?complex. My apologies. -Andy

loading matrix from file
Andy Bunn · Jan 5, 2004 · r-help

What's wrong with read.table? It's the principal function for reading data into R. -Andy

bray-curtis?
Andy Bunn · Mar 16, 2004 · r-help

Look at the function vegdist in the library vegan. It does Bray-Curtis and other common ecological distance measures. HTH, Andy

nortest package
Andy Bunn · Feb 4, 2004 · r-help

Did you load the library? library(nortest) lillie.test(rnorm(100, mean = 5, sd = 3)) lillie.test(runif(100, min = 2, max = 4))

Complex conjugate?
Andy Bunn · Feb 18, 2004 · r-help

Is there a function in R that returns the complex conjugate of a matrix (a la 'CONJ' in IDL or 'Conjugate' in Mathmatica)?

extracting row means from a list
Andy Bunn · Jul 19, 2005 · r-help

I think about half of my question in R can be solved with a judicious do.call. Thanks, Andy

Autologistic regression
Andy Bunn · Mar 4, 2003 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20030304/d12439db/attachment.pl

Questions about spatial data
Andy Bunn · Mar 11, 2004 · r-help

See the splancs library and the functions gridpts pcp.sim csr in particular. However, what you want to do is not completely trivial.

[OT] How many useRs?
Andy Bunn · Aug 27, 2007 · r-devel

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-devel/attachments/20070827/6e038322/attachment.pl

How do I insert a newline in my title in a plot?
Andy Bunn · Sep 16, 2004 · r-help

You had it. plot(1:5, main = "This is a title\nIn 2 lines") HTH, Andy

finding common elements in a list
Andy Bunn · Apr 7, 2006 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20060407/5179175d/attachment.pl

Google Earth Engine?
Andy Bunn · May 26, 2017 · r-sig-geo

Does anybody out there interface with the google earth engine from R? I'm too old a dog to learn python. -Andy [[alternative HTML version deleted]]

Reading word by word in a dataset
Andy Bunn · Nov 1, 2004 · r-help

Something like this should work: foo <- read.table("text2read.txt", colClasses=c("character", "NULL", "NULL"))$V1 foo <- gsub("i[0-9]-", "", foo) HTH, Andy

text mining with R
Andy Bunn · Nov 3, 2005 · r-help

> Just wondering if anyone knows of any text mining projects in > R...I googled > a bit but didn't get anything... RSiteSearch("text mining") turns up 85 hits...

using object reference
Andy Bunn · Mar 2, 2004 · r-help

Don't you just need to use return? x <- 1 attr(x,'a') <- 'some text' f <- function(z) { attr(z,'a') <- 'some new text' return(z) } y <- f(x) y

R & Graphs
Andy Bunn · Oct 20, 2004 · r-help

In addition, look at "Laying Out Pathways With Rgraphviz" in R News which describes the Rgraphviz packages on Bioconductor. http://cran.r-project.org/doc/Rnews/Rnews_2004-2.pdf HTH, Andy

shading in line plots
Andy Bunn · Apr 28, 2005 · r-help

> PS 6 days to the big Jedi holiday! I wonder if anybody who gave the matter any thought would be surprised that the R-Help list is populated by ubergeeks.

saving a data.frame to "\t" files
Andy Bunn · Mar 11, 2004 · r-help

?write.table setwd("c:\\temp") myDF <- data.frame(A = rnorm(100), B = rnorm(100)) write.table(myDF, file = "myDF.dat", sep = "\t", quote = F, row.names = F) HTH, Andy

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