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