Re: [R] conditional plot

2006-07-19 Thread Chuck Cleland
Manoj wrote: Hi, Can anyone pls help me in plotting the following data? The data-set contains company name, specification-1, specification-2. The graph would basically plot company name with specification-1 on x-axis, specification-2 on y-axis. Simply put - company

Re: [R] conditional plot

2006-07-19 Thread jim holtman
does this do what you want? x - data.frame(company=LETTERS, spec1=runif(26), spec2=runif(26)) plot(range(x$spec1), range(x$spec2), type='n') abline(v=.5, h=.5) text(x$spec1, x$spec2, labels=x$company) On 7/19/06, Manoj [EMAIL PROTECTED] wrote: Hi, Can anyone pls help me in plotting the