Re: [R] change individual label colours in a cluster plot?

2009-03-04 Thread Sur Nathan
Hi Jim, How are you? I saw your posting. I am trying to do clustering for co authorship.What I have is undirected graph .I want to have clusters for 393 nodes. I am attaching the file along with this mail.If you move to the section Cluster I am looking to do something like that.Is it

Re: [R] change individual label colours in a cluster plot?

2009-02-05 Thread patricia garcía gonzález
Hi, If you have a variable, that defines what you want to differentiate (sociology, economics etc.) then you can add color depending on the value of that variable. You will have to convert it to numeric if it is not. An example would be plot( iris[ , 1 ], iris[ , 2], col = iris[ , 3 ] )

Re: [R] change individual label colours in a cluster plot?

2009-02-05 Thread Jim Ottaway
patricia garcía gonzález kurtney...@hotmail.com writes: Hi, If you have a variable, that defines what you want to differentiate (sociology, economics etc.) then you can add color depending on the value of that variable. You will have to convert it to numeric if it is not. An example would