[R] Hello,

2008-07-30 Thread Kiran Annaiah
Hello, A newbie to R. I am trying to use the exonmap package in R. According to the docs, the xmapDatabase() command should read the config file with all the connection parameters and connect to the DB. But i get the error shown below > xmapDatabase("Human") Error in mysqlNewConnection(dbDri

[R] hello

2008-01-24 Thread elyakhlifi mustapha
hello, happy new year. I want to know if it's possible to send a bar chart from the software R to an directory. Thanks. _ [[alternative HTML version deleted]] __

[R] Hello

2008-06-10 Thread sumit gupta
Hello, I am facing a problem in drawing heat map using R. I have a 70X3 matrix and I want to draw a heat map with 1 coloumn on X axis another on Y axis and want to show the value of 3rd coloumn using heat colours. Could you please help me with this . Thank you . Regards, Sumit [[alterna

[R] Hello

2009-08-19 Thread dimple thyagarajan
Hello!   I am trying to merge two xy-plot with different ylimits.   Can someone please give me possible way of achieving it..   Thank you Regards Dimple [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://st

Re: [R] Hello,

2008-08-12 Thread Richard Pearson
Kiran exonmap is a bioconductor package - I'd suggest trying the bioconductor mailing list. Also, you're more likely to get a response if you include an informative subject line. Regards Richard. Kiran Annaiah wrote: Hello, A newbie to R. I am trying to use the exonmap package in R. Acc

Re: [R] hello

2008-01-24 Thread Jared O'Connell
See the examples under ?png ?pdf On Jan 24, 2008 10:05 AM, elyakhlifi mustapha <[EMAIL PROTECTED]> wrote: > hello, > happy new year. > I want to know if it's possible to send a bar chart from the software R to > an directory. > Thanks. > > > > _

Re: [R] hello

2008-01-24 Thread Julien Barnier
Hi, > I want to know if it's possible to send a bar chart from the > software R to an directory. Do you mean saving your figure to a file ? If so, you can take a look at the device functions, which allow you to generate your figure to a file in different formats, especially pdf or postscript. Fo

Re: [R] Hello

2008-06-10 Thread Greg Snow
Look at the "image" function and the "levelplot" function in the lattice package. -Original Message- From: "sumit gupta" <[EMAIL PROTECTED]> To: "r-help@r-project.org" Sent: 6/10/08 6:55 AM Subject: [R] Hello Hello, I am facing a probl

Re: [R] Hello

2008-06-11 Thread Petr PIKAL
"sumit gupta" <[EMAIL PROTECTED]> napsal dne 11.06.2008 07:53:54: > Hello > thanx for the info.. > > I still have tthe doubt regarding the heat map. > I am attching a plot of a 70X3 data matrix.In which 3rd variable has been > shown as colour of different boxes.Could you help me to draw this

Re: [R] Hello

2009-08-19 Thread jim holtman
generate the plot with the limit of both ranges and then add the second with 'lines' plot(x1,y1,ylim=range(y1, y2)) lines(x2,y2) On Wed, Aug 19, 2009 at 6:24 PM, dimple thyagarajan wrote: > Hello! > > I am trying to merge two xy-plot with different ylimits. > > Can someone please give me possible

Re: [R] Hello

2009-08-19 Thread David Winsemius
On Aug 19, 2009, at 6:24 PM, dimple thyagarajan wrote: Hello! I am trying to merge two xy-plot with different ylimits. Can someone please give me possible way of achieving it.. You cannot possibly be using a function named xy-plo. The particular function you have chosen will be critical t

Re: [R] Hello

2009-08-20 Thread Paul Hiemstra
dimple thyagarajan wrote: Hello! I am trying to merge two xy-plot with different ylimits. It seems that you are using lattice graphics (which you do not mention), if so, look at the documentation of xyplot, specifically to the panel argument. cheers, Paul Can someone please give me pos

[R] hello! i need help for a specific graphic issue

2008-03-12 Thread Giacomo Prodi
hello, ladyes and gentlemans. check this: means<-c(4,6,8) stand.error<-c(0.1,0.3,0.5) now i've strongly tryed to scatterplot the means(y-axis),by showing their sd with the arrow(..,code=3,angle=90) function. The problem is that my x-axis has categorical values (say, factor(x)), and the arrows()

Re: [R] hello! i need help for a specific graphic issue

2008-03-12 Thread René Capell
get instant information with 'locator()', which returns coordinates of mouse clicked locations in plots. cheers, /rené > -Ursprüngliche Nachricht- > Von: "Giacomo Prodi" <[EMAIL PROTECTED]> > Gesendet: 12.03.08 11:56:45 > An: r-help@r-project.org >

Re: [R] hello! i need help for a specific graphic issue

2008-03-12 Thread hadley wickham
On Wed, Mar 12, 2008 at 5:37 AM, Giacomo Prodi <[EMAIL PROTECTED]> wrote: > hello, ladyes and gentlemans. > > check this: > > means<-c(4,6,8) > stand.error<-c(0.1,0.3,0.5) > > now i've strongly tryed to scatterplot the > means(y-axis),by showing their sd with the > arrow(..,code=3,angle=90) f

Re: [R] hello! i need help for a specific graphic issue

2008-03-12 Thread John Kane
I don't think that you're actually creating a scatterplot if the x-axis is a factor. You're getting a boxplot. If you want a scatterplot then something like this might work. == means<-c(4,6,8) stand.error<-c(0.1,0.3,0.5) aa <- factor(c("A","B"

Re: [R] hello! i need help for a specific graphic issue

2008-03-12 Thread bartjoosen
quick (and dirty) solution: y.up<- means+stand.error y.dwn<- means-stand.error plot(means,ylim=c(3.5,10)) for (i in 1:length(means)) arrows(i,means[i],i,y.up[i],length=0.1) for (i in 1:length(means)) arrows(i,means[i],i,y.dwn[i],length=0.1) Giacomo Prodi wrote: > > hello, ladyes and gentlem