//
//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 //title strings
xlabel=x //x axis strings
ylabel=y //y axis strings
zlabel=z //z axis strings
xrange=[xmin:xmax]
yrange=[ymin:ymax]
zrange=[zmin:zmax]
xrotate=90 //vetical x tics
marker:type //example:o,+,x,A,V,box,OF,BF,AF,VF,DF,PF
color:color //example:black,red,blue,green,yellow
marksize:nn //marker size
width:nn //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
;