Hi
I am new to python . I need source code to draw scatter plot using Python
my Input_1 is something like below:
-------------------------------------------
ID X Y Z
120321 172.15 -285.03 -870.09
120323 244.31 -257.18 -870.19
120324 274.65 -277.03 -870.10
120327 226.51 -263.98 -870.09
120328 268.55 -271.05 -870.10
my Input_2 is something like below:
-------------------------------------------
120321 ST
120323 SL
120324 ST
120327 ST
120328 OP
My problem is it has to read File Input_1 x,y,z data and plot the points in space such that
if it is "ST" i should get point in Green Color, "SL" means RED color, "OP" means black color
I am attching sample image for this
Can any body help in the code for the above problem