GnuPlot - Plot one variable and its multiple properties -
i have data file in csv format looks this:
nodeid prop1 prop2 prop3
1, 0.5, 0.5, 4
2, 0.3, 0.7, 5
i want show correlation of different properties every nodeid have. want plot property 1 on x-axis , property 2 on y-axis , similary property 1 vs property 3. show 1 node how different properties like. have around 2500 nodes.
is possible plot in gnuplot?
i tried using variable keyword not sure convincing enough.
plot 'localview.csv' using 2:3:4 w points ps variable lc palette
any hints or w.r.t highly appreciated thanks!
how plotting prop2 , prop3 separately?
this uses same x , y axes prop2 , prop3:
plot 'localview.csv' using 2:3 w points ps variable pt 1 lc palette,\ 'localview.csv' using 2:4 w points ps variable pt 2 lc palette}
or have 2 different y axes prop2 , prop3:
plot 'localview.csv' using 2:3 w points ps variable pt 1 lc palette,\ 'localview.csv' using 2:4 w points ps variable pt 2 lc palette axes x1y2
Comments
Post a Comment