Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: Home
Views: 972
import csv file = 'scatter.csv' reader = csv.reader(open(file)) L = [] for row in reader: L.append(row) #b=list_plot3d(L, point_list=False,viewer='threejs') a=point3d( L ,viewer='threejs') show(a) #show(b)
3D rendering not yet implemented