You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Linear**: evenly spaced (e.g. 20%, 40%, 60%, 80% for `n_ticks=4`)
169
167
-**Log**: only powers of 10 (decade marks) that fall within the data range
170
168
-**Symlog**: powers of 10 filtered by visual position spacing — ticks far from zero (where the symlog transform expands the scale) are shown at every decade, while ticks near zero (where the transform compresses values) are adaptively thinned to prevent overlap. Zero is always shown when it falls within the data range and away from edges.
171
169
@@ -175,8 +173,8 @@ The adaptive spacing uses the symlog-transformed position of each candidate tick
175
173
176
174
| Parameter | Default | Function | Description |
177
175
|-----------|---------|----------|-------------|
178
-
|`n_intervals`|`4`|`apply_discrete_linear()`| Number of equal intervals to divide the data range|
179
-
|`n_sub`|`1`| All `apply_discrete_*()` functions | Number of sub-bands per interval/decade |
176
+
|`n_ticks`|`4`|`apply_discrete_linear()`| Number of tick marks (creates `n_ticks + 1` equal gaps)|
177
+
|`n_sub`|`1`| All `apply_discrete_*()` functions | Number of color bands per gap (linear) or per decade (log/symlog)|
180
178
|`n_samples`|`256`|`apply_discrete_log()`, `apply_symlog()`, `apply_discrete_symlog()`| Resampling resolution for building continuous CTFs |
181
179
182
180
## Dependencies
@@ -266,9 +264,8 @@ provides the canonical definition with defaults.
266
264
|`color_blind`|`bool`|`False`| Filter preset list to color-blind safe |
0 commit comments