Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. from mpl_toolkits.mplot3d import Axes3D
  2. import matplotlib.pyplot as plt
  3.  
  4.  
  5.  
  6. fig = plt.figure()
  7. ax = fig.add_subplot(111, projection='3d')
  8.  
  9. x = power_current_pd8_on['VDD-CL(V)']
  10. y = power_current_pd8_on['CLK_IN(Hz)']
  11. z = IDCLA_pd8_on
  12.  
  13.  
  14.  
  15. ax.scatter(x , y, z, c='r', marker='o')
  16.  
  17. ax.set_xlabel('VDD-CL(V)')
  18. ax.set_ylabel('CLK_IN(Hz)')
  19. ax.set_zlabel('ID-CL(A)')
  20. ax.set_title('VDD-CL(V) vs CLK-IN(Hz) vs ID-CL(A)')
  21. ax.set_xlim3d(left=.80, right=.9, auto = False)
  22. ax.set_ylim3d(bottom=0, top=.4, auto = False)
  23. #ax.set_zlim3d(0,1000)
  24.  
  25. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement