Sets the span in data space for which the density function will be computed. Has an effect only when `spanmode` is set to "manual". The 'span' property is an info array that may be specified as: * a list or tuple of 2 elements where:
(self)
| 966 | |
| 967 | @property |
| 968 | def span(self): |
| 969 | """ |
| 970 | Sets the span in data space for which the density function will |
| 971 | be computed. Has an effect only when `spanmode` is set to |
| 972 | "manual". |
| 973 | |
| 974 | The 'span' property is an info array that may be specified as: |
| 975 | |
| 976 | * a list or tuple of 2 elements where: |
| 977 | (0) The 'span[0]' property accepts values of any type |
| 978 | (1) The 'span[1]' property accepts values of any type |
| 979 | |
| 980 | Returns |
| 981 | ------- |
| 982 | list |
| 983 | """ |
| 984 | return self["span"] |
| 985 | |
| 986 | @span.setter |
| 987 | def span(self, val): |
no outgoing calls
no test coverage detected