Return a copy. Returns ------- new_series : series Copy of self.
(self)
| 657 | # |
| 658 | |
| 659 | def copy(self): |
| 660 | """Return a copy. |
| 661 | |
| 662 | Returns |
| 663 | ------- |
| 664 | new_series : series |
| 665 | Copy of self. |
| 666 | |
| 667 | """ |
| 668 | return self.__class__(self.coef, self.domain, self.window, self.symbol) |
| 669 | |
| 670 | def degree(self): |
| 671 | """The degree of the series. |
no outgoing calls