@@ -1197,18 +1197,18 @@ class SymLogNorm(Normalize):
1197
1197
def __init__ (self , linthresh , linscale = 1.0 ,
1198
1198
vmin = None , vmax = None , clip = False ):
1199
1199
"""
1200
- *linthresh*:
1201
- The range within which the plot is linear (to
1202
- avoid having the plot go to infinity around zero).
1203
-
1204
- *linscale*:
1205
- This allows the linear range (-*linthresh* to *linthresh*)
1206
- to be stretched relative to the logarithmic range. Its
1207
- value is the number of decades to use for each half of the
1208
- linear range. For example, when *linscale* == 1.0 ( the
1209
- default), the space used for the positive and negative
1210
- halves of the linear range will be equal to one decade in
1211
- the logarithmic range. Defaults to 1 .
1200
+ Parameters
1201
+ ----------
1202
+ linthresh : float
1203
+ The range within which the plot is linear (to avoid having the plot
1204
+ go to infinity around zero).
1205
+ linscale : float, default: 1
1206
+ This allows the linear range (-*linthresh* to *linthresh*) to be
1207
+ stretched relative to the logarithmic range. Its value is the
1208
+ number of decades to use for each half of the linear range. For
1209
+ example, when *linscale* == 1.0 (the default), the space used for
1210
+ the positive and negative halves of the linear range will be equal
1211
+ to one decade in the logarithmic range .
1212
1212
"""
1213
1213
Normalize .__init__ (self , vmin , vmax , clip )
1214
1214
self .linthresh = float (linthresh )
0 commit comments