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

Method set_yscale

lib/mpl_toolkits/mplot3d/axes3d.py:1175–1189  ·  view source on GitHub ↗

Set the y-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

1173 self._set_axis_scale(self.xaxis, value, **kwargs)
1174
1175 def set_yscale(self, value, **kwargs):
1176 """
1177 Set the y-axis scale.
1178
1179 Parameters
1180 ----------
1181 value : {"linear", "log", "symlog", "logit", ...}
1182 The axis scale type to apply. See `~.scale.ScaleBase` for
1183 the list of available scales.
1184
1185 **kwargs
1186 Keyword arguments are forwarded to the scale class.
1187 For example, ``base=2`` can be passed when using a log scale.
1188 """
1189 self._set_axis_scale(self.yaxis, value, **kwargs)
1190
1191 def set_zscale(self, value, **kwargs):
1192 """

Calls 1

_set_axis_scaleMethod · 0.95

Tested by 5

test_scale3d_all_clippedFunction · 0.36
test_scale3d_log_basesFunction · 0.36