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.
> Ill[Ill != "No"] My entry for the obfusacted R-contest: IlI<-'No';Ill[Ill!=IlI] SCNR Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan 85350 Freising, Germany http://mips.gsf.de/staff...
> What are Cairo graphics and how to find out about them, please? http://www.google.de/search?hl=de&q=cairo+graphics cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan 85350...
Oh - and also have a look at the R graph gallery for inspiration: http://addictedtor.free.fr/graphiques/ cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan Maximus-von-Imhof-Forum 3...
> I have two versions of the lattice package installed on my computer. > How can I check to make sure that this version gets loaded sessionInfo() cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen...
Oops - have to comment my own answer: > <<echo=F>>= For this to work it needs to be <<echo=F, results=tex>>= cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan Maximus-von...
On Wed, Dec 17, 2008 at 02:09:57PM +0100, Philipp Pagel wrote: > or maybe > > ggregate(foo$V1, by=list(foo$V1), FUN=length) Oops- that was supposed to be 'aggegate'... -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische...
> I would like to skip a preset number of values when reading in a binary file > (readBin). Is there any way to do this? Just read the number of elements you would like to skip and discard them. cu Philipp...
On Thu, Jun 05, 2008 at 09:05:25AM +0200, Philipp Pagel wrote: > a bad idea. Alternatively, this should work: > > foo$id <- cumsum(as.logical(diff(foo$id))) + 1 I should have explicitly said that this only works after sorting...
> It works fine. > > Could you explain to me why it did not worked for read.table? Because of what Gavin already explaied in his reply: read.table returns a data.frame and hist needs a vector. cu Philipp -- Dr. Philipp...
> Assume that the 5th iteration (subject=5) leads to the error > message. How can I tell R to continue with the 6th iteration? try or tryCatch are probably what you want. cu Philipp -- Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte...
> strings <- c("aaaa", "bbbb","ccba"). > > How to get "aaaa", "bbbb" that do not contain "ba" ? I think this is what you want: > foo <- c("aaaa", "bbbb","ccba") > foo[-grep('ba', foo)] [1] "aaaa" "bbbb" cu Philipp -- Dr. Philipp Pagel Lehrstuhl...
> which is the maximum large of digits that R has?, because SQL work > with 50 digits I think. and I need a software that work with a lot > of digits. The .Machine() command will provide some insight into these matters...
On Wed, Nov 26, 2008 at 08:50:33AM +0100, Oliver Bandel wrote: > at some places I read about good interaction of > LaTeX and R. > > Can you give me a starting point, where I can find > information about it? Have...
On Mon, Apr 18, 2011 at 04:11:57PM +0530, Ramnath R wrote: > Hai > > From which CRAN mirror can get the package ?LPP2005REC? As the first hit of a google search for "LPP2005REC" told me it is not a package...
On Thu, Oct 09, 2003 at 07:39:58AM -0700, christoff pale wrote: > Hi,s there a .Rrc file? so that when R starts up > it automatically loads this file? ?Startup will tell you everything you want to know - especially...
> 1, A, 24, The Red House > 2, A, 25, King's Home, by the Sea > ... > Is there a way i can specify to R that "King's Home, by the Sea" is one > word? Yes: It needs to be quoted...
> g(x,y) = f(x,y) - e(x)- e(y) > These are continuous functions. I am not sure how to do this with the > discrete equivalents in R. Is this what you are looking for? g <- function(x, y) { f...
> gsub fails on this file due to a particular value "C?te d'Ivoire" > which is present in the file. This is when my locale is set to > en_US.utf8 but when I set locale to C it (gsub...
On Fri, Sep 18, 2009 at 12:59:16PM +0200, Philipp Pagel wrote: > > foo$B <- as.numeric(sub(',', '', as.character(foo$B))) Thinking about it some more, you should use gsub instead of sub here. Otherwise only the first occurrence...
> par(mfrow=c(3,2)) > > The 6 graphs are coming out quite all right, but now I would like to > put a title on top of the page - i.e. something that is common for > all 6 graphs - how can...
Can't find what you're looking for? Try searching with Google .