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.

316 results for “from:Eik Vettorazzi”

font formating
Eik Vettorazzi · Nov 15, 2007 · r-help

you may read, as suggested, ?plotmath and look at the examples example(plotmath) Jos? Alberto Monteiro schrieb: > Thanks a lot! Can I use it inside text( )? Like text(expression=()) > > > -- > MSc Jos? Alberto F. Monteiro > Botanisches Institut > Universit?t Basel -- Eik...

How to detect and exclude outliers in R?
Eik Vettorazzi · Jan 19, 2010 · r-help

fortune("outlier") vikrant schrieb: > Suppose I am reading data from a file and the data contains some outliers. I > want to know if it is possible in R to automatically detect outliers in a > dataset and remove them > -- Eik Vettorazzi...

line joining graphs
Eik Vettorazzi · Feb 22, 2009 · r-help

hi, you can use par(xpd=TRUE) and draw the joining line in every sub graph - don't know if there is another way with simple graphs eg: par(mfcol=c(1,2)) plot(1,1,xlim=c(0,5...

Heatmap/Color Selection(Key)
Eik Vettorazzi · Oct 11, 2010 · r-help

sorry, typo: > heatmap.2(x,col=colorRampPalette(c("blue","lightblue","darkgray","darkgray","yellow","red"),space="Lab"),at=c(-6.01,6.01,51)) > heatmap.2(x,col=c("blue","lightblue","darkgray","black","darkgray","yellow","red"),at=-3:3*2) should...

diptest
Eik Vettorazzi · Aug 18, 2011 · r-help

you loaded that package as well? library(diptest) ... best. Am 18.08.2011 15:16, schrieb matilde vaghi: > To whom it may concern. > > I d like to do use Hartigan & Hartigan's [1] "dip test" of unimodality via > the diptest...

Newbie Question About Histograms
Eik Vettorazzi · Jan 28, 2009 · r-help

How about > dta<-read.table("clipboard",header=T) > means<-aggregate(dta$Length,by=list(YearC=dta$YearC),FUN=mean) > barplot(means[,2],names.arg=means[,1]) you may have a look at ?barplot to see (lots of) options for fine...

Is there any function to skip a loop in a for loop ?
Eik Vettorazzi · Apr 18, 2008 · r-help

see ?next hth. Ng Stanley schrieb: > Hi, > > Is there any function to skip a loop in a for loop ? > > Thanks > Stanley > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r...

Combination
Eik Vettorazzi · Feb 17, 2009 · r-help

Hi Dani, see ?combn . combn(1:50,2) gives you all combinations as matrix. you can do sth like apply(combn(1:50,2),2, paste, sep="", collapse="") to get concatenated results. hth. Dani Valverde schrieb: > Hello, > I have a...

place text out of plot region
Eik Vettorazzi · Mar 4, 2009 · r-help

Why use text()? There is a function called "mtext" for that task. hth. batholdy at googlemail.com schrieb: > Hi, > > is there a way to place text out of the plot region with text() ? > > > > thanks! > > ______________________________________________ > R-help at r-project.org...

Linear regression on several groups
Eik Vettorazzi · Aug 13, 2010 · r-help

hi, maybe an ANCOVA is what you want, which is also done by lm in R lm(y~x*z) Am 12.08.2010 17:11, schrieb JesperHybel: > > I have a simple dataset of a numerical dependent Y, a numerical...

Count between interval
Eik Vettorazzi · Feb 22, 2010 · r-help

Hi, ab<-read.table(header=F,file=textConnection("-1.3 1 -1.5 -1 1.5 -2.5 3 -0.5")) length(which(ab >=-2 & ab<=2)) Bosken schrieb: > Hi all, > > I take a simple dataset like this: > > -1.3...

factors levels ?
Eik Vettorazzi · Nov 13, 2007 · r-help

cut(X,Y,right=F) W Eryk Wolski schrieb: > Hi, > > It's just some example code.. The application is uninteresting. I am > searching for some functionality. > > X <- rnorm(100) //my data > > Y <- seq(-3,3,by=0.1) // bin boundaries...

Setting global variables in a function
Eik Vettorazzi · Feb 22, 2009 · r-help

see ?'<<-' hth. Will Stone schrieb: > Hi, > I am writing a function that plots many graphs so therefore I have it turn > recording on. The problem is; that when it is run again, the new graphs get > added to the old...

Very simple question
Eik Vettorazzi · Apr 8, 2011 · r-help

Hi, try paste(teste,collapse="+") cheers. Am 08.04.2011 12:44, schrieb Ronaldo Reis Junior: > Hi, > > I have a very simple doubt. > > Look: > >> teste <- c("A","B","C") > >> teste2 <- paste(teste[1],teste[2],teste[3],sep="+") >> teste2 > [1...

how to deal with a changed plotting title?
Eik Vettorazzi · Feb 22, 2009 · r-help

Hi Oliver, this a classic "paste" task ...main=paste("graph", i)... hth. Oliver schrieb: > hi, > > I am trying to plot a series of graph with varied titles (slightly). > So I was trying to format it and pass it to "main...

Print file updated/created date to console?
Eik Vettorazzi · Jul 12, 2011 · r-help

Hi, file.info() does that. Cheers Am 12.07.2011 15:29, schrieb Scott Chamberlain: > Hello, > > Are there any built in or user defined functions for printing the date created or date updated for a given file? Ideally a function...

Plotting league tables/ caterpillar plots
Eik Vettorazzi · Jul 24, 2006 · r-help

Dear list, I was wondering if there is a function to plot league tables, sometimes also known as "caterpillar plots"? A league table is conceptually very similar to a box plot. One difference is that the inter-quartile ranges are...

Make R 'Beep'
Eik Vettorazzi · Mar 8, 2011 · r-help

Hi Alex, how about alarm() hth. Am 08.03.2011 11:01, schrieb Alaios: > Dear all, > I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to...

how to plot single frames as a movie?
Eik Vettorazzi · Feb 4, 2010 · r-help

Hi Javier, have a look at the animation-package on CRAN and http://animation.yihui.name/ hth. Javier schrieb: > Dear users, > > 1. Is there a way to create a movie file to play a sequence of single frames > (e.g...

Is there a way to add external variables to axis labels?
Eik Vettorazzi · Sep 25, 2008 · r-help

Hi Arthur, I guess you can solve both 1) and 2) by examining ?bquote ?plotmath hth. Arthur Roberts schrieb: > Hi, all, > > Thanks for all your help in the previous emails. Question 1: Is there > a way to use external variables...

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