[R] hclust title and paste - messed up

2004-10-11 Thread Dan Bolser
I use the following code to scan a (limited) parameter space of clustering strategies ... data - read.table(... dataTranspose - t(data) distMeth - c(euclidean, maximum, manhattan, canberra, binary ) clustMeth - c(ward,

Re: [R] hclust title and paste - messed up

2004-10-11 Thread Gregoire Thomas
paste(c(a,b,c),collapse=) paste(a,b,c,sep=) On Mon, 2004-10-11 at 13:40, Dan Bolser wrote: I use the following code to scan a (limited) parameter space of clustering strategies ... data - read.table(... dataTranspose - t(data) distMeth - c(euclidean, maximum,

Re: [R] hclust title and paste - messed up

2004-10-11 Thread Peter Dalgaard
Dan Bolser [EMAIL PROTECTED] writes: main=paste(c( Distance Measure, d, Cluster Method, m),sep= ), xlab='', sub='' ) However, my plot title (main) has 4 lines, when I think it should only have one line. What am I doing