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.
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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 .