(self, attr)
| 895 | return new._clone(transform(*args, **kwargs), dmap=dmap) |
| 896 | |
| 897 | def __getattr__(self, attr): |
| 898 | if attr in self._kinds: |
| 899 | return partial(self, _kind=attr) |
| 900 | else: |
| 901 | raise AttributeError(f"'hvplot' object has no attribute '{attr}'") |
| 902 | |
| 903 | def __dir__(self): |
| 904 | # This function is for autocompletion |
nothing calls this directly
no outgoing calls
no test coverage detected