4/4 ericyosho :
>> Year, I think we could do unsorted scatter plot as well, however I'm
>> still not satisfied with the book tracking routines I have to check
>> when doing the surface plotting.
>
> What do you mean with "book tracking routines"?
>
&g
Year, I think we could do unsorted scatter plot as well, however I'm
still not satisfied with the book tracking routines I have to check
when doing the surface plotting.
Anyway, thanks, man. You saved a lot.
Hope this time, it CC to the mailing list as well. :-)
-
Hi, All,
I have a bunch of 3D points with coordinations in a dict
pointset = {
(x1,y1):z1,
(x2,y2):z2,
...
}
It seems I have to
1. fire a loop to change each item and convert the whole dictionary into arrays;
x = []
y = []
for i in pointset.items():
x.append(i[0][0])
y.append(i[0][1])
2.