//
//Triangle scat plot command
//
//this plot command draws triangle scatter plot according to number of variables.

//Syntax without category variable.
plot mx [variables];


//Option
//title=title strings
//xlabel=x axis strings
//ylabel=y axis strings
//zlabel=z axis strings
//xrange=[xmin:xmax]
//yrange=[ymin:ymax]
//zrange=[zmin:zmax]
//xrotate=90  //vetical x tics
//marker:marker type  example:o,+,x,A,V,box,OF,BF,AF,VF,DF,PF
//color:color  example:black,red,blue,green,yellow
//marksize:marker size
//width:line size
//mxcolor:color for histgram color


//Example read bankers data 
get irisR.csv@;

//Example seting options for marker type and maker size plot mx SepalW SepalL PetalW PetalL/ marker=OF marksize=0.2 mxcolor=blue ;