1#import pyplot and Axes3D
2import matplotlib.pyplot as plt
3from mpl_toolkits.mplot3d import Axes3D
4
5#plotting a scatter for example
6fig = plt.figure()
7ax = fig.add_subplot(111,projection = "3d")
8ax.scatter(xs = data["x"], ys = data["y"], zs = data["z"])
9fig