We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa9d5c commit f8fb0c1Copy full SHA for f8fb0c1
examples/gallery/3d_plots/3d_bar.py
@@ -22,8 +22,8 @@
22
# color-coding of the bars, here the elevation ("z")
23
grd2tab = pygmt.grd2xyz(grid=grid, region=region)
24
grd2tab["color"] = grd2tab["z"]
25
-z_min = grd2tab["z"].min() - 50
26
-z_max = grd2tab["z"].max() + 50
+zmin = grd2tab["z"].min() - 50
+zmax = grd2tab["z"].max() + 50
27
28
# Create a 3-D bar plot with color-coding
29
fig = pygmt.Figure()
0 commit comments