i made a clustering based on the k-medoids algorithm, my problem is the graphic, i got this as a result, the two components as the axis:
    library(fpc) 
    rez<-pamk(tab$Presence) (the values of the presence column are the    valures that i want to assign to groups or classes, tab is my data which i described it) 
    plot(rez$pamobject)>

what i want is that the clusters be showen but with the a datetime column on the x axis (first one which is Dat_Heure) and the factors that compose the clusters as the y axis (the 13 column which is Prsence)
a subset from my data ::
Dat_Heure    Devtype Devidx Capt_radio Fonction Fonction_nom Spec1 Spec2 Spec3
1 2015-09-22 00:00:08 IntelliTag      1         17        6     Alarme   -55  2423 -1085
Spec4 Spec5      Spec6 Presence Spec8 Spec9 Spec10           timeserie
1  -503   145 1442880008     0     0     0     NA 2015-09-22 00:00:08
 
     
    