-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
new featureRequest for adding a new feature to the packageRequest for adding a new feature to the package
Description
Summary
Currently you cannot easily define pass a range to the bounds or levels formatoption. There should be a possibility to specify something like bounds=slice(0, 1, 0.1) or bounds=slice(None, 1, 0.1).
Reason
The user does not have to specify the bounds manually.
Examples
see also
slice(None)should be the same as"minmax",slice(None, 1)should take the minimum fromminmax, the maximum is1and the step is1slice(None, 1, 0.1)should take the minimum fromminmax, the maximum is1and the step is0.1slice(0, None, 0.1)should take the maximum fromminmax, the minimum is0and the step is0.1slice(0, 1, 0.1)should be equivalent tonp.arange(0, 1, 0.1)
Metadata
Metadata
Assignees
Labels
new featureRequest for adding a new feature to the packageRequest for adding a new feature to the package