(*args, **kwargs)
| 2638 | |
| 2639 | |
| 2640 | def _dot_series(*args, **kwargs): |
| 2641 | # .sum() is invoked on each partition before being applied to all |
| 2642 | # partitions. The return type is expected to be a series, not a numpy object |
| 2643 | return meta_series_constructor(args[0])(M.dot(*args, **kwargs)) |
| 2644 | |
| 2645 | |
| 2646 | # Add operator attributes |
nothing calls this directly
no test coverage detected