MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_zscale

Method set_zscale

lib/mpl_toolkits/mplot3d/axes3d.py:1191–1205  ·  view source on GitHub ↗

Set the z-axis scale. Parameters ---------- value : {"linear", "log", "symlog", "logit", ...} The axis scale type to apply. See `~.scale.ScaleBase` for the list of available scales. **kwargs Keyword arguments are forwarde

(self, value, **kwargs)

Source from the content-addressed store, hash-verified

1189 self._set_axis_scale(self.yaxis, value, **kwargs)
1190
1191 def set_zscale(self, value, **kwargs):
1192 """
1193 Set the z-axis scale.
1194
1195 Parameters
1196 ----------
1197 value : {"linear", "log", "symlog", "logit", ...}
1198 The axis scale type to apply. See `~.scale.ScaleBase` for
1199 the list of available scales.
1200
1201 **kwargs
1202 Keyword arguments are forwarded to the scale class.
1203 For example, ``base=2`` can be passed when using a log scale.
1204 """
1205 self._set_axis_scale(self.zaxis, value, **kwargs)
1206
1207 twinx = _api.unsupported_method()
1208 twiny = _api.unsupported_method()

Calls 1

_set_axis_scaleMethod · 0.95