I have a set of cluster output. I want to show each cluster with unique color in parallel coordinate graph. I am using rggobi for parallel coordinate graph. I used this link http://www.ggobi.org/docs/parallel-coordinates/
here is my code to load the data to ggobi
library(rggobi)
mydata <- read.table("E:/Thesis/Experiments/R/input.cvs",header = TRUE,sep = ",")
g <- ggobi(mydata)
here is my output
I want to use different color to represent different clusters.