Sets the radius of influence of one `lon` / `lat` point in pixels. Increasing the value makes the densitymap trace smoother, but less detailed. The 'radius' property is a number and may be specified as: - An int or float in the interval [1, inf]
(self)
| 731 | |
| 732 | @property |
| 733 | def radius(self): |
| 734 | """ |
| 735 | Sets the radius of influence of one `lon` / `lat` point in |
| 736 | pixels. Increasing the value makes the densitymap trace |
| 737 | smoother, but less detailed. |
| 738 | |
| 739 | The 'radius' property is a number and may be specified as: |
| 740 | - An int or float in the interval [1, inf] |
| 741 | - A tuple, list, or one-dimensional numpy array of the above |
| 742 | |
| 743 | Returns |
| 744 | ------- |
| 745 | int|float|numpy.ndarray |
| 746 | """ |
| 747 | return self["radius"] |
| 748 | |
| 749 | @radius.setter |
| 750 | def radius(self, val): |