Site Navigation
Section Navigation
Create a copy of this Series.
This is a cheap operation that does not copy data.
See also
clearCreate an empty copy of the current Series, with identical schema but no data.
Examples
>>> s = pl.Series("a", [1, 2, 3])
>>> s.clone()
shape: (3,)
Series: 'a' [i64]
[
1
2
3
]