Python Forum
.pyplot has not attribute zlim
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
.pyplot has not attribute zlim
#1
Hey guys,

can someone explain to me this error?

"AttributeError: module 'matplotlib.pyplot' has no attribute 'zlim'"

I try to read in coordinates from a txt file. In each row, the coordinates are separated by a single tabulator.

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import csv

fig=plt.figure()
ax=fig.add_subplot(111, projection='3d')
x=[]
y=[]
z=[]
with open('fcc_coordinates_a=1.500000_5rows_5columns_5layers.dat') as csv_file:
    plots = csv.reader(csv_file, delimiter="\t")
    for row in plots:
        x.append(float(row[0]))
        y.append(float(row[1]))
        z.append(float(row[2]))
        
ax.scatter(x,y,z,c='r',marker='o')
ax.set_xlabel('x axis')
ax.set_ylabel('y axis')
ax.set_zlabel('z axis')

plt.show()

plt.xlim(0,7.5)
plt.ylim(0,7.5)
plt.zlim(0,7.5) 
Regards
Reply


Messages In This Thread
.pyplot has not attribute zlim - by SchroedingersLion - Aug-22-2018, 12:56 PM
RE: .pyplot has not attribute zlim - by buran - Aug-22-2018, 02:19 PM
RE: .pyplot has not attribute zlim - by heras - Aug-24-2018, 09:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is Matplotlib.pyplot Loaded DaveG 2 1,343 Apr-06-2022, 06:12 AM
Last Post: DaveG
  Python 3.10 not happy with Pandas and PyPlot? Danno 1 1,592 Feb-26-2022, 05:35 AM
Last Post: Danno
  matplotlib.pyplot.show Alienspecimen 2 2,260 Feb-27-2021, 02:32 AM
Last Post: snippsat
  Pyplot graph size TammyP 1 1,778 Jan-26-2021, 02:15 PM
Last Post: TammyP
  Understanding The Arguments for matplotlib.pyplot.plot JoeDainton123 0 1,943 Aug-19-2020, 01:19 AM
Last Post: JoeDainton123
  Pyplot and circle Reldaing 0 1,504 Apr-01-2020, 10:44 AM
Last Post: Reldaing
  Plot a graph using matplotlib.pyplot Tibas 1 3,486 Feb-23-2018, 10:47 AM
Last Post: Tibas

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020