Re: [R] multinomial conditional logit models

2003-01-30 Thread Friedrich . Leisch
On Wed, 29 Jan 2003 11:57:20 -0800 (PST), John Hendrickx (JH) wrote: A multinomial logit model can be specified as a conditional logit model after restructuring the data. Doing so gives flexibility in imposing restrictions on the dependent variable. One application is to specify a

[R] Short Course in R: University of Hertfordshire

2003-01-30 Thread Neil Spencer
One-day Course in R University of Hertfordshire Thursday 24th April 2003 http://www.herts.ac.uk/business/centres/sscu/ R is a freely-available computer package for statistics used by professional statisticians. The command language used by R is very similar to that

Re: [R] Downloading Package

2003-01-30 Thread AlessandroSemeria
From RGUI.exe - Packages - Install package from CRAN - select multiv - OK Good job. A.S. |+| |Alessandro Semeria |Tel. +39 544 536811 |

Re: [R] Downloading Package

2003-01-30 Thread Peter von Rohr
Hello Vincent, I am a beginner in using R so my question could seem very simple. I would like to download the package multiv to do multivariate data analysis. The package I download seems to be a file meant for UNIX and I am using a Window OS. How could I download and install correctly this

[R] seMethod for tkpack and tkgrid

2003-01-30 Thread Lars Hougaard Hansen BSA
Hi, I have a problem, regarding setMethod for tkpack and tkgrid. I define a new class , with one of the slots being of class tkwin. I would now naturel to set a method for packing the tkwin-slot; but here I run into trouble. The code is given below. ## problem regarding setMethod for tkpack

My apologies: user caused error (was RE: [R] browser()misbehavio r ?)

2003-01-30 Thread Pikounis, Bill
Please accept my apologies...it turns out that my occasional mode of copying code from an editor to the Rgui console via the clipboard can easily add a carriage return, and this exactly instructs browser to quit (as Q does). Thanks to Brian Ripley and Andy Liaw for replying back with helpful

[R] Validation of clustering

2003-01-30 Thread Francisco do Nascimento Junior
Hi, I'm using the library cluster to cluster a set of figures (method CLARA). Somebody that it work with clustering would know informs what I make to evaluate the clustering? Tks VM, Francisco. ^^ Francisco Júnior, Computer Science - UFPE-Brazil One life has

[R] Plotting

2003-01-30 Thread Francisco do Nascimento Junior
Hi, How do I do to plot two graphics in the single axes coordenate? Tks, Francisco. ^^ Francisco Júnior, Computer Science - UFPE-Brazil One life has more value that the world whole ^^

Re: [R] Plotting

2003-01-30 Thread Ben Bolker
Depending on what you mean (same x-axis and y-axis), look at ?points or ?lines OR (same x-axis, different y-axes) plot(...); par(new=TRUE); plot(...,ann=FALSE). (The latter is asked frequently on this list.) Ben Bolker On Thu, 30 Jan 2003, Francisco do Nascimento Junior wrote: Hi,

[R] nearest neighbour interpolation

2003-01-30 Thread Matthew Oliver
Dear Help List, My name is Matt Oliver. I have been using R for about a year and find it very helpful. However, I have a need for a function that I cannot find. I am not very good at programming so I thought I would ask the group. I have an irregular grid of data (x = Longitude, y = Latitude).

RE: [R] Downloading Package

2003-01-30 Thread Warnes, Gregory R
If your system is set up appropriately, you should be able to use the menu Packages - Install Packages from Cran to get a list of packages, then select the desired package and press OK. -Greg -Original Message- From: Peter von Rohr [mailto:[EMAIL PROTECTED]] Sent: Thursday, January

[R] Regarding R

2003-01-30 Thread Komanduru Sai C
Hi, I am a grad student at the university of Louisiana at Lafayette. I have a question. I have an equation with 3 unknowns. f= P/ (r+p) pow(B). I have values of f for different r's. Can i use R to find the P,p,B values which are constants. The equation is Manderbolts equation. Thanks

Re: [R] Regarding R

2003-01-30 Thread A.J. Rossini
KSC == Komanduru Sai C Komanduru writes: KSC I am a grad student at the university of Louisiana at Lafayette. I have a KSC question. I have an equation with 3 unknowns. f= P/ (r+p) pow(B). I have values KSC of f for different r's. Can i use R to find the P,p,B values which are

Re: [R] Regarding R

2003-01-30 Thread Douglas Bates
Komanduru Sai C [EMAIL PROTECTED] writes: I am a grad student at the university of Louisiana at Lafayette. I have a question. I have an equation with 3 unknowns. f= P/ (r+p) pow(B). I have values of f for different r's. Can i use R to find the P,p,B values which are constants. The

[R] multiple scatterplots

2003-01-30 Thread Heather Good
When I create multiple scatterplots on a page using: op = par(mfrow=c(2,2)) plot( x, y, xlab=x, ylab=y, main=plot of x and y) etc. I am getting plots that are rectangular, not square. Although, the first few times I used this command, it produced square plots. Is there a way to ensure that

Re: [R] multiple scatterplots

2003-01-30 Thread kjetil brinchmann halvorsen
On 30 Jan 2003 at 8:51, Heather Good wrote: Reading ?par gives the answer, but that takes some time. An example: par(mfrow=c(2,2)) par(pty=s) plot(1:10, 1:10) . . . seems to work Kjetil Halvorsen When I create multiple scatterplots on a page using: op = par(mfrow=c(2,2)) plot( x,

Re: [R] Regarding Installation of R

2003-01-30 Thread Ko-Kang Kevin Wang
- Original Message - From: saicharan komanduru [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 31, 2003 7:31 AM Subject: [R] Regarding Installation of R Hi, I am trying to install R on Windows. I copied the set up binary. But it is corrupted on all the mirror sites.

Re: [R] multinomial conditional logit models

2003-01-30 Thread John Hendrickx
Thanks, that did the trick. My mclgen function can be written as mclgen - function (datamat,catvar) { ncat - nlevels(catvar) perschoice-as.data.frame(rep(datamat,ncat)) perschoice-reshape(perschoice,direction=long, varying=lapply(names(datamat),rep,ncat),

Re: [R] multinomial conditional logit models

2003-01-30 Thread ripley
On Thu, 30 Jan 2003, John Hendrickx wrote: Thanks, that did the trick. My mclgen function can be written as mclgen - function (datamat,catvar) { ncat - nlevels(catvar) perschoice-as.data.frame(rep(datamat,ncat)) perschoice-reshape(perschoice,direction=long,

[R] Re: Regarding Installation

2003-01-30 Thread Robert King
Its possible to corrupt the binary if you actually open it in a browser, and the browser tries to display it, and then you save it. Have you tried right-clicking on the link to download it? Robert. On Thu, 30 Jan 2003, saicharan komanduru wrote: Hi, I copied the binary setup file for

Re: [R] Double Exponential

2003-01-30 Thread ripley
ifelse(runif(n) 0.5, 1, -1) * rexp(n) On Thu, 30 Jan 2003, Jason Parcon wrote: To whom it may concern: I just would like to know how can one generate a set of random values from the double exponential distribution. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of

Re: [R] Double Exponential

2003-01-30 Thread Ben Bolker
What do you mean by double exponential? Can you give us another more familiar name (e.g. Laplacian), or a reference, or a more detailed description, or a formula for the cumulative or probability density function? Ben Bolker On Thu, 30 Jan 2003, Jason Parcon wrote: To whom it may

[R] (no subject)

2003-01-30 Thread pavel koulikov
Hi I have 4 vectors x,y,z,v I need 2 graphs (x~y,z~v) on the same plot. I mean two lines on the same plot - blue and red. I wrote: c.pl=xyplot(y~x, na.rm=TRUE,type=l,more=TRUE, scales = list(cex=3/4,x=list(tick.number=3,alternating = c(0,1)),y=list(tick.number=7)),

[R] Question about trellis graphs

2003-01-30 Thread cmorab
Dear List Members I'm using R to create a trellis plot using the library of Pinheiro Bates (trellis graph for grouped data). Here is my question: How can I change the format of the axis (x or y) in terms of the number decimal points that should appear on the plot? In other words, I have that for

Re: [R] Question about trellis graphs

2003-01-30 Thread Andrew C. Ward
Christian, The scales argument of lattice plots achieve this. For instance you could have xyplot(y ~ x, data=my.data, scales=list(x=list(at=c(0, 0.1, 0.2), labels=c(0.0, 0.1, 0.2 Check out ?xyplot for a lot more detail on this and other arguments to lattice functions.

[R] Help on Scatte Plot Matrix

2003-01-30 Thread Feng Zhang
Hey, All Now I have a data set which is n-dimensional. And want to plot the Scatter Plot Matrix which is n by n. Does R have such function to achieve this? Thanks for your point. Fred __ [EMAIL PROTECTED] mailing list