1#![allow(unsafe_op_in_unsafe_fn)]
2use crate::chunked_array::flags::StatisticsFlags;
4pub use crate::prelude::ChunkCompareEq;
5use crate::prelude::*;
6use crate::{HEAD_DEFAULT_LENGTH, TAIL_DEFAULT_LENGTH};
7
8macro_rules! invalid_operation_panic {
9 ($op:ident, $s:expr) => {
10 panic!(
11 "`{}` operation not supported for dtype `{}`",
12 stringify!($op),
13 $s._dtype()
14 )
15 };
16}
17
18pub mod amortized_iter;
19mod any_value;
20pub mod arithmetic;
21pub mod arrow_export;
22pub mod builder;
23
24mod comparison;
25mod from;
26pub mod implementations;
27pub(crate) mod iterator;
28pub mod ops;
29#[cfg(feature = "proptest")]
30pub mod proptest;
31mod series_trait;
32
33use std::borrow::Cow;
34use std::hash::{Hash, Hasher};
35use std::ops::Deref;
36
37use arrow::compute::aggregate::estimated_bytes_size;
38use arrow::offset::Offsets;
39pub use from::*;
40pub use iterator::{SeriesIter, SeriesPhysIter};
41use num_traits::NumCast;
42use polars_error::feature_gated;
43use polars_utils::float::IsFloat;
44pub use series_trait::{IsSorted, *};
45
46use crate::chunked_array::cast::CastOptions;
47use crate::runtime::RAYON;
48#[cfg(feature = "zip_with")]
49use crate::series::arithmetic::coerce_lhs_rhs;
50use crate::utils::{Wrap, handle_casting_failures, materialize_dyn_int};
51
52#[derive(Clone)]
150#[must_use]
151pub struct Series(pub Arc<dyn SeriesTrait>);
152
153impl PartialEq for Wrap<Series> {
154 fn eq(&self, other: &Self) -> bool {
155 self.0.equals_missing(other)
156 }
157}
158
159impl Eq for Wrap<Series> {}
160
161impl Hash for Wrap<Series> {
162 fn hash<H: Hasher>(&self, state: &mut H) {
163 self.dtype().hash(state);
164 self.len().hash(state);
165
166 for av in self.iter() {
167 av.hash(state);
168 }
169 }
170}
171
172impl Series {
173 pub fn new_empty(name: PlSmallStr, dtype: &DataType) -> Series {
175 Series::full_null(name, 0, dtype)
176 }
177
178 pub fn clear(&self) -> Series {
179 if self.is_empty() {
180 self.clone()
181 } else {
182 match self.dtype() {
183 #[cfg(feature = "object")]
184 DataType::Object(_) => self
185 .take(&ChunkedArray::<IdxType>::new_vec(PlSmallStr::EMPTY, vec![]))
186 .unwrap(),
187 dt => Series::new_empty(self.name().clone(), dt),
188 }
189 }
190 }
191
192 #[doc(hidden)]
193 pub fn _get_inner_mut(&mut self) -> &mut dyn SeriesTrait {
194 if Arc::weak_count(&self.0) + Arc::strong_count(&self.0) != 1 {
195 self.0 = self.0.clone_inner();
196 }
197 Arc::get_mut(&mut self.0).expect("implementation error")
198 }
199
200 pub fn take_inner<T: PolarsPhysicalType>(self) -> ChunkedArray<T> {
202 let arc_any = self.0.as_arc_any();
203 let downcast = arc_any
204 .downcast::<implementations::SeriesWrap<ChunkedArray<T>>>()
205 .unwrap();
206
207 match Arc::try_unwrap(downcast) {
208 Ok(ca) => ca.0,
209 Err(ca) => ca.as_ref().as_ref().clone(),
210 }
211 }
212
213 #[inline]
215 pub fn array_ref(&self, chunk_idx: usize) -> &ArrayRef {
216 &self.chunks()[chunk_idx] as &ArrayRef
217 }
218
219 pub unsafe fn chunks_mut(&mut self) -> &mut Vec<ArrayRef> {
223 #[allow(unused_mut)]
224 let mut ca = self._get_inner_mut();
225 ca.chunks_mut()
226 }
227
228 pub fn into_chunks(mut self) -> Vec<ArrayRef> {
229 let ca = self._get_inner_mut();
230 let chunks = std::mem::take(unsafe { ca.chunks_mut() });
231 ca.compute_len();
232 chunks
233 }
234
235 pub fn select_chunk(&self, i: usize) -> Self {
237 let mut new = self.clear();
238 let mut flags = self.get_flags();
239
240 use StatisticsFlags as F;
241 flags &= F::IS_SORTED_ANY | F::CAN_FAST_EXPLODE_LIST;
242
243 let mut_new = new._get_inner_mut();
245 let chunks = unsafe { mut_new.chunks_mut() };
246 let chunk = self.chunks()[i].clone();
247 chunks.clear();
248 chunks.push(chunk);
249 mut_new.compute_len();
250 mut_new._set_flags(flags);
251 new
252 }
253
254 pub fn is_sorted_flag(&self) -> IsSorted {
255 if self.len() <= 1 {
256 return IsSorted::Ascending;
257 }
258 self.get_flags().is_sorted()
259 }
260
261 pub fn set_sorted_flag(&mut self, sorted: IsSorted) {
262 let mut flags = self.get_flags();
263 flags.set_sorted(sorted);
264 self.set_flags(flags);
265 }
266
267 pub(crate) fn clear_flags(&mut self) {
268 self.set_flags(StatisticsFlags::empty());
269 }
270 pub fn get_flags(&self) -> StatisticsFlags {
271 self.0._get_flags()
272 }
273
274 pub(crate) fn set_flags(&mut self, flags: StatisticsFlags) {
275 self._get_inner_mut()._set_flags(flags)
276 }
277
278 pub fn into_frame(self) -> DataFrame {
279 unsafe { DataFrame::new_unchecked(self.len(), vec![self.into()]) }
281 }
282
283 pub fn rename(&mut self, name: PlSmallStr) -> &mut Series {
285 self._get_inner_mut().rename(name);
286 self
287 }
288
289 pub fn with_name(mut self, name: PlSmallStr) -> Series {
291 self.rename(name);
292 self
293 }
294
295 pub fn from_arrow_chunks(name: PlSmallStr, arrays: Vec<ArrayRef>) -> PolarsResult<Series> {
296 Self::try_from((name, arrays))
297 }
298
299 pub fn from_arrow(name: PlSmallStr, array: ArrayRef) -> PolarsResult<Series> {
300 Self::try_from((name, array))
301 }
302
303 pub fn shrink_to_fit(&mut self) {
305 self._get_inner_mut().shrink_to_fit()
306 }
307
308 pub fn append(&mut self, other: &Series) -> PolarsResult<&mut Self> {
312 let must_cast = other.dtype().matches_schema_type(self.dtype())?;
313 if must_cast {
314 let other = other.cast(self.dtype())?;
315 self.append_owned(other)?;
316 } else {
317 self._get_inner_mut().append(other)?;
318 }
319 Ok(self)
320 }
321
322 pub fn append_owned(&mut self, other: Series) -> PolarsResult<&mut Self> {
326 let must_cast = other.dtype().matches_schema_type(self.dtype())?;
327 if must_cast {
328 let other = other.cast(self.dtype())?;
329 self._get_inner_mut().append_owned(other)?;
330 } else {
331 self._get_inner_mut().append_owned(other)?;
332 }
333 Ok(self)
334 }
335
336 pub fn compute_len(&mut self) {
338 self._get_inner_mut().compute_len()
339 }
340
341 pub fn extend(&mut self, other: &Series) -> PolarsResult<&mut Self> {
345 let must_cast = other.dtype().matches_schema_type(self.dtype())?;
346 if must_cast {
347 let other = other.cast(self.dtype())?;
348 self._get_inner_mut().extend(&other)?;
349 } else {
350 self._get_inner_mut().extend(other)?;
351 }
352 Ok(self)
353 }
354
355 pub fn sort(&self, sort_options: SortOptions) -> PolarsResult<Self> {
371 self.sort_with(sort_options)
372 }
373
374 pub fn as_single_ptr(&mut self) -> PolarsResult<usize> {
376 self._get_inner_mut().as_single_ptr()
377 }
378
379 pub fn cast(&self, dtype: &DataType) -> PolarsResult<Self> {
380 self.cast_with_options(dtype, CastOptions::NonStrict)
381 }
382
383 pub fn cast_with_options(&self, dtype: &DataType, options: CastOptions) -> PolarsResult<Self> {
385 let slf = self
386 .trim_lists_to_normalized_offsets()
387 .map_or(Cow::Borrowed(self), Cow::Owned);
388 let slf = slf.propagate_nulls().map_or(slf, Cow::Owned);
389
390 use DataType as D;
391 let do_clone = match dtype {
392 D::Unknown(UnknownKind::Any) => true,
393 D::Unknown(UnknownKind::Int(_)) if slf.dtype().is_integer() => true,
394 D::Unknown(UnknownKind::Float) if slf.dtype().is_float() => true,
395 D::Unknown(UnknownKind::Str)
396 if slf.dtype().is_string() | slf.dtype().is_categorical() =>
397 {
398 true
399 },
400 dt if (dt.is_primitive() || dt.is_extension()) && dt == slf.dtype() => true,
401 _ => false,
402 };
403
404 if do_clone {
405 return Ok(slf.into_owned());
406 }
407
408 pub fn cast_dtype(dtype: &DataType) -> Option<DataType> {
409 match dtype {
410 D::Unknown(UnknownKind::Int(v)) => Some(materialize_dyn_int(*v).dtype()),
411 D::Unknown(UnknownKind::Float) => Some(DataType::Float64),
412 D::Unknown(UnknownKind::Str) => Some(DataType::String),
413 D::List(inner) => cast_dtype(inner.as_ref()).map(Box::new).map(D::List),
415 #[cfg(feature = "dtype-struct")]
416 D::Struct(fields) => {
417 let mut field_iter = fields.iter().enumerate();
420 let mut new_fields = loop {
421 let (i, field) = field_iter.next()?;
422
423 if let Some(dtype) = cast_dtype(&field.dtype) {
424 let mut new_fields = Vec::with_capacity(fields.len());
425 new_fields.extend(fields.iter().take(i).cloned());
426 new_fields.push(Field {
427 name: field.name.clone(),
428 dtype,
429 });
430 break new_fields;
431 }
432 };
433
434 new_fields.extend(fields.iter().skip(new_fields.len()).cloned().map(|field| {
435 let dtype = cast_dtype(&field.dtype).unwrap_or(field.dtype);
436 Field {
437 name: field.name,
438 dtype,
439 }
440 }));
441
442 Some(D::Struct(new_fields))
443 },
444 _ => None,
445 }
446 }
447
448 let mut casted = cast_dtype(dtype);
449 if dtype.is_list() && dtype.inner_dtype().is_some_and(|dt| dt.is_null()) {
450 if let Some(from_inner_dtype) = slf.dtype().inner_dtype() {
451 casted = Some(DataType::List(Box::new(from_inner_dtype.clone())));
452 }
453 }
454 let dtype = match casted {
455 None => dtype,
456 Some(ref dtype) => dtype,
457 };
458
459 let len = slf.len();
461 if slf.null_count() == len {
462 return Ok(Series::full_null(slf.name().clone(), len, dtype));
463 }
464
465 let new_options = match options {
466 CastOptions::Strict if !dtype.is_nested() => CastOptions::NonStrict,
469 opt => opt,
470 };
471
472 let out = slf.0.cast(dtype, new_options)?;
473 if options.is_strict() {
474 handle_casting_failures(slf.as_ref(), &out)?;
475 }
476 Ok(out)
477 }
478
479 pub unsafe fn cast_unchecked(&self, dtype: &DataType) -> PolarsResult<Self> {
485 match self.dtype() {
486 #[cfg(feature = "dtype-struct")]
487 DataType::Struct(_) => self.struct_().unwrap().cast_unchecked(dtype),
488 DataType::List(_) => self.list().unwrap().cast_unchecked(dtype),
489 dt if dt.is_primitive_numeric() => {
490 with_match_physical_numeric_polars_type!(dt, |$T| {
491 let ca: &ChunkedArray<$T> = self.as_ref().as_ref().as_ref();
492 ca.cast_unchecked(dtype)
493 })
494 },
495 DataType::Binary => self.binary().unwrap().cast_unchecked(dtype),
496 _ => self.cast_with_options(dtype, CastOptions::Overflowing),
497 }
498 }
499
500 pub unsafe fn from_physical_unchecked(&self, dtype: &DataType) -> PolarsResult<Self> {
506 debug_assert!(!self.dtype().is_logical(), "{:?}", self.dtype());
507
508 if self.dtype() == dtype {
509 return Ok(self.clone());
510 }
511
512 use DataType as D;
513 match (self.dtype(), dtype) {
514 #[cfg(feature = "dtype-decimal")]
515 (D::Int128, D::Decimal(precision, scale)) => {
516 let ca = self.i128().unwrap();
517 Ok(ca
518 .clone()
519 .into_decimal_unchecked(*precision, *scale)
520 .into_series())
521 },
522
523 #[cfg(feature = "dtype-categorical")]
524 (phys, D::Categorical(cats, _)) if &cats.physical().dtype() == phys => {
525 with_match_categorical_physical_type!(cats.physical(), |$C| {
526 type CA = ChunkedArray<<$C as PolarsCategoricalType>::PolarsPhysical>;
527 let ca = self.as_ref().as_any().downcast_ref::<CA>().unwrap();
528 Ok(CategoricalChunked::<$C>::from_cats_and_dtype_unchecked(
529 ca.clone(),
530 dtype.clone(),
531 )
532 .into_series())
533 })
534 },
535 #[cfg(feature = "dtype-categorical")]
536 (phys, D::Enum(fcats, _)) if &fcats.physical().dtype() == phys => {
537 with_match_categorical_physical_type!(fcats.physical(), |$C| {
538 type CA = ChunkedArray<<$C as PolarsCategoricalType>::PolarsPhysical>;
539 let ca = self.as_ref().as_any().downcast_ref::<CA>().unwrap();
540 Ok(CategoricalChunked::<$C>::from_cats_and_dtype_unchecked(
541 ca.clone(),
542 dtype.clone(),
543 )
544 .into_series())
545 })
546 },
547
548 (D::Int32, D::Date) => feature_gated!("dtype-time", Ok(self.clone().into_date())),
549 (D::Int64, D::Datetime(tu, tz)) => feature_gated!(
550 "dtype-datetime",
551 Ok(self.clone().into_datetime(*tu, tz.clone()))
552 ),
553 (D::Int64, D::Duration(tu)) => {
554 feature_gated!("dtype-duration", Ok(self.clone().into_duration(*tu)))
555 },
556 (D::Int64, D::Time) => feature_gated!("dtype-time", Ok(self.clone().into_time())),
557
558 (D::List(_), D::List(to)) => unsafe {
559 self.list()
560 .unwrap()
561 .from_physical_unchecked(to.as_ref().clone())
562 .map(|ca| ca.into_series())
563 },
564 #[cfg(feature = "dtype-array")]
565 (D::Array(_, lw), D::Array(to, rw)) if lw == rw => unsafe {
566 self.array()
567 .unwrap()
568 .from_physical_unchecked(to.as_ref().clone())
569 .map(|ca| ca.into_series())
570 },
571 #[cfg(feature = "dtype-struct")]
572 (D::Struct(_), D::Struct(to)) => unsafe {
573 self.struct_()
574 .unwrap()
575 .from_physical_unchecked(to.as_slice())
576 .map(|ca| ca.into_series())
577 },
578
579 #[cfg(feature = "dtype-extension")]
580 (_, D::Extension(typ, storage)) => {
581 let storage_series = self.from_physical_unchecked(storage.as_ref())?;
582 let ext = ExtensionChunked::from_storage(typ.clone(), storage_series);
583 Ok(ext.into_series())
584 },
585
586 _ => panic!("invalid from_physical({dtype:?}) for {:?}", self.dtype()),
587 }
588 }
589
590 #[cfg(feature = "dtype-extension")]
591 pub fn into_extension(self, typ: ExtensionTypeInstance) -> Series {
592 assert!(!self.dtype().is_extension());
593 let ext = ExtensionChunked::from_storage(typ, self);
594 ext.into_series()
595 }
596
597 pub fn to_float(&self) -> PolarsResult<Series> {
599 match self.dtype() {
600 DataType::Float32 | DataType::Float64 => Ok(self.clone()),
601 _ => self.cast_with_options(&DataType::Float64, CastOptions::Overflowing),
602 }
603 }
604
605 pub fn sum<T>(&self) -> PolarsResult<T>
612 where
613 T: NumCast + IsFloat,
614 {
615 let sum = self.sum_reduce()?;
616 let sum = sum.value().extract().unwrap();
617 Ok(sum)
618 }
619
620 pub fn min<T>(&self) -> PolarsResult<Option<T>>
623 where
624 T: NumCast + IsFloat,
625 {
626 let min = self.min_reduce()?;
627 let min = min.value().extract::<T>();
628 Ok(min)
629 }
630
631 pub fn max<T>(&self) -> PolarsResult<Option<T>>
634 where
635 T: NumCast + IsFloat,
636 {
637 let max = self.max_reduce()?;
638 let max = max.value().extract::<T>();
639 Ok(max)
640 }
641
642 pub fn explode(&self, options: ExplodeOptions) -> PolarsResult<Series> {
644 match self.dtype() {
645 DataType::List(_) => self.list().unwrap().explode(options),
646 #[cfg(feature = "dtype-array")]
647 DataType::Array(_, _) => self.array().unwrap().explode(options),
648 _ => Ok(self.clone()),
649 }
650 }
651
652 pub fn is_nan(&self) -> PolarsResult<BooleanChunked> {
654 match self.dtype() {
655 #[cfg(feature = "dtype-f16")]
656 DataType::Float16 => Ok(self.f16().unwrap().is_nan()),
657 DataType::Float32 => Ok(self.f32().unwrap().is_nan()),
658 DataType::Float64 => Ok(self.f64().unwrap().is_nan()),
659 DataType::Null => Ok(BooleanChunked::full_null(self.name().clone(), self.len())),
660 dt if dt.is_primitive_numeric() => {
661 let arr = BooleanArray::full(self.len(), false, ArrowDataType::Boolean)
662 .with_validity(self.rechunk_validity());
663 Ok(BooleanChunked::with_chunk(self.name().clone(), arr))
664 },
665 _ => polars_bail!(opq = is_nan, self.dtype()),
666 }
667 }
668
669 pub fn is_not_nan(&self) -> PolarsResult<BooleanChunked> {
671 match self.dtype() {
672 #[cfg(feature = "dtype-f16")]
673 DataType::Float16 => Ok(self.f16().unwrap().is_not_nan()),
674 DataType::Float32 => Ok(self.f32().unwrap().is_not_nan()),
675 DataType::Float64 => Ok(self.f64().unwrap().is_not_nan()),
676 dt if dt.is_primitive_numeric() => {
677 let arr = BooleanArray::full(self.len(), true, ArrowDataType::Boolean)
678 .with_validity(self.rechunk_validity());
679 Ok(BooleanChunked::with_chunk(self.name().clone(), arr))
680 },
681 _ => polars_bail!(opq = is_not_nan, self.dtype()),
682 }
683 }
684
685 pub fn is_finite(&self) -> PolarsResult<BooleanChunked> {
687 match self.dtype() {
688 #[cfg(feature = "dtype-f16")]
689 DataType::Float16 => Ok(self.f16().unwrap().is_finite()),
690 DataType::Float32 => Ok(self.f32().unwrap().is_finite()),
691 DataType::Float64 => Ok(self.f64().unwrap().is_finite()),
692 DataType::Null => Ok(BooleanChunked::full_null(self.name().clone(), self.len())),
693 dt if dt.is_primitive_numeric() => {
694 let arr = BooleanArray::full(self.len(), true, ArrowDataType::Boolean)
695 .with_validity(self.rechunk_validity());
696 Ok(BooleanChunked::with_chunk(self.name().clone(), arr))
697 },
698 _ => polars_bail!(opq = is_finite, self.dtype()),
699 }
700 }
701
702 pub fn is_infinite(&self) -> PolarsResult<BooleanChunked> {
704 match self.dtype() {
705 #[cfg(feature = "dtype-f16")]
706 DataType::Float16 => Ok(self.f16().unwrap().is_infinite()),
707 DataType::Float32 => Ok(self.f32().unwrap().is_infinite()),
708 DataType::Float64 => Ok(self.f64().unwrap().is_infinite()),
709 DataType::Null => Ok(BooleanChunked::full_null(self.name().clone(), self.len())),
710 dt if dt.is_primitive_numeric() => {
711 let arr = BooleanArray::full(self.len(), false, ArrowDataType::Boolean)
712 .with_validity(self.rechunk_validity());
713 Ok(BooleanChunked::with_chunk(self.name().clone(), arr))
714 },
715 _ => polars_bail!(opq = is_infinite, self.dtype()),
716 }
717 }
718
719 #[cfg(feature = "zip_with")]
723 pub fn zip_with(&self, mask: &BooleanChunked, other: &Series) -> PolarsResult<Series> {
724 let (lhs, rhs) = coerce_lhs_rhs(self, other)?;
725 lhs.zip_with_same_type(mask, rhs.as_ref())
726 }
727
728 pub fn to_physical_repr(&self) -> Cow<'_, Series> {
742 use DataType::*;
743 match self.dtype() {
744 #[cfg(feature = "dtype-date")]
747 Date => Cow::Owned(self.date().unwrap().phys.clone().into_series()),
748 #[cfg(feature = "dtype-datetime")]
749 Datetime(_, _) => Cow::Owned(self.datetime().unwrap().phys.clone().into_series()),
750 #[cfg(feature = "dtype-duration")]
751 Duration(_) => Cow::Owned(self.duration().unwrap().phys.clone().into_series()),
752 #[cfg(feature = "dtype-time")]
753 Time => Cow::Owned(self.time().unwrap().phys.clone().into_series()),
754 #[cfg(feature = "dtype-categorical")]
755 dt @ (Categorical(_, _) | Enum(_, _)) => {
756 with_match_categorical_physical_type!(dt.cat_physical().unwrap(), |$C| {
757 let ca = self.cat::<$C>().unwrap();
758 Cow::Owned(ca.physical().clone().into_series())
759 })
760 },
761 #[cfg(feature = "dtype-decimal")]
762 Decimal(_, _) => Cow::Owned(self.decimal().unwrap().phys.clone().into_series()),
763 List(_) => match self.list().unwrap().to_physical_repr() {
764 Cow::Borrowed(_) => Cow::Borrowed(self),
765 Cow::Owned(ca) => Cow::Owned(ca.into_series()),
766 },
767 #[cfg(feature = "dtype-array")]
768 Array(_, _) => match self.array().unwrap().to_physical_repr() {
769 Cow::Borrowed(_) => Cow::Borrowed(self),
770 Cow::Owned(ca) => Cow::Owned(ca.into_series()),
771 },
772 #[cfg(feature = "dtype-struct")]
773 Struct(_) => match self.struct_().unwrap().to_physical_repr() {
774 Cow::Borrowed(_) => Cow::Borrowed(self),
775 Cow::Owned(ca) => Cow::Owned(ca.into_series()),
776 },
777 #[cfg(feature = "dtype-extension")]
778 Extension(_, _) => self.ext().unwrap().storage().to_physical_repr(),
779 _ => Cow::Borrowed(self),
780 }
781 }
782
783 pub fn to_storage(&self) -> &Series {
786 #[cfg(feature = "dtype-extension")]
787 {
788 if let DataType::Extension(_, _) = self.dtype() {
789 return self.ext().unwrap().storage();
790 }
791 }
792 self
793 }
794
795 pub fn gather_every(&self, n: usize, offset: usize) -> PolarsResult<Series> {
797 polars_ensure!(n > 0, ComputeError: "cannot perform gather every for `n=0`");
798 let idx = ((offset as IdxSize)..self.len() as IdxSize)
799 .step_by(n)
800 .collect_ca(PlSmallStr::EMPTY);
801 Ok(unsafe { self.take_unchecked(&idx) })
803 }
804
805 #[cfg(feature = "dot_product")]
806 pub fn dot(&self, other: &Series) -> PolarsResult<f64> {
807 std::ops::Mul::mul(self, other)?.sum::<f64>()
808 }
809
810 pub fn sum_reduce(&self) -> PolarsResult<Scalar> {
817 self.0.sum_reduce()
818 }
819
820 pub fn mean_reduce(&self) -> PolarsResult<Scalar> {
823 self.0.mean_reduce()
824 }
825
826 pub fn product(&self) -> PolarsResult<Scalar> {
831 #[cfg(feature = "product")]
832 {
833 use DataType::*;
834 match self.dtype() {
835 Boolean => self.cast(&DataType::Int64).unwrap().product(),
836 Int8 | UInt8 | Int16 | UInt16 | Int32 | UInt32 => {
837 let s = self.cast(&Int64).unwrap();
838 s.product()
839 },
840 Int64 => Ok(self.i64().unwrap().prod_reduce()),
841 UInt64 => Ok(self.u64().unwrap().prod_reduce()),
842 #[cfg(feature = "dtype-i128")]
843 Int128 => Ok(self.i128().unwrap().prod_reduce()),
844 #[cfg(feature = "dtype-u128")]
845 UInt128 => Ok(self.u128().unwrap().prod_reduce()),
846 #[cfg(feature = "dtype-f16")]
847 Float16 => Ok(self.f16().unwrap().prod_reduce()),
848 Float32 => Ok(self.f32().unwrap().prod_reduce()),
849 Float64 => Ok(self.f64().unwrap().prod_reduce()),
850 #[cfg(feature = "dtype-decimal")]
851 Decimal(..) => Ok(self.decimal().unwrap().prod_reduce()),
852 dt => {
853 polars_bail!(InvalidOperation: "`product` operation not supported for dtype `{dt}`")
854 },
855 }
856 }
857 #[cfg(not(feature = "product"))]
858 {
859 panic!("activate 'product' feature")
860 }
861 }
862
863 pub fn strict_cast(&self, dtype: &DataType) -> PolarsResult<Series> {
865 self.cast_with_options(dtype, CastOptions::Strict)
866 }
867
868 #[cfg(feature = "dtype-decimal")]
869 pub fn into_decimal(self, precision: usize, scale: usize) -> PolarsResult<Series> {
870 match self.dtype() {
871 DataType::Int128 => Ok(self
872 .i128()
873 .unwrap()
874 .clone()
875 .into_decimal(precision, scale)?
876 .into_series()),
877 DataType::Decimal(cur_prec, cur_scale)
878 if scale == *cur_scale && precision >= *cur_prec =>
879 {
880 Ok(self)
881 },
882 dt => panic!("into_decimal({precision:?}, {scale}) not implemented for {dt:?}"),
883 }
884 }
885
886 #[cfg(feature = "dtype-time")]
887 pub fn into_time(self) -> Series {
888 match self.dtype() {
889 DataType::Int64 => self.i64().unwrap().clone().into_time().into_series(),
890 DataType::Time => self
891 .time()
892 .unwrap()
893 .physical()
894 .clone()
895 .into_time()
896 .into_series(),
897 dt => panic!("date not implemented for {dt:?}"),
898 }
899 }
900
901 pub fn into_date(self) -> Series {
902 #[cfg(not(feature = "dtype-date"))]
903 {
904 panic!("activate feature dtype-date")
905 }
906 #[cfg(feature = "dtype-date")]
907 match self.dtype() {
908 DataType::Int32 => self.i32().unwrap().clone().into_date().into_series(),
909 DataType::Date => self
910 .date()
911 .unwrap()
912 .physical()
913 .clone()
914 .into_date()
915 .into_series(),
916 dt => panic!("date not implemented for {dt:?}"),
917 }
918 }
919
920 #[allow(unused_variables)]
921 pub fn into_datetime(self, timeunit: TimeUnit, tz: Option<TimeZone>) -> Series {
922 #[cfg(not(feature = "dtype-datetime"))]
923 {
924 panic!("activate feature dtype-datetime")
925 }
926
927 #[cfg(feature = "dtype-datetime")]
928 match self.dtype() {
929 DataType::Int64 => self
930 .i64()
931 .unwrap()
932 .clone()
933 .into_datetime(timeunit, tz)
934 .into_series(),
935 DataType::Datetime(_, _) => self
936 .datetime()
937 .unwrap()
938 .physical()
939 .clone()
940 .into_datetime(timeunit, tz)
941 .into_series(),
942 dt => panic!("into_datetime not implemented for {dt:?}"),
943 }
944 }
945
946 #[allow(unused_variables)]
947 pub fn into_duration(self, timeunit: TimeUnit) -> Series {
948 #[cfg(not(feature = "dtype-duration"))]
949 {
950 panic!("activate feature dtype-duration")
951 }
952 #[cfg(feature = "dtype-duration")]
953 match self.dtype() {
954 DataType::Int64 => self
955 .i64()
956 .unwrap()
957 .clone()
958 .into_duration(timeunit)
959 .into_series(),
960 DataType::Duration(_) => self
961 .duration()
962 .unwrap()
963 .physical()
964 .clone()
965 .into_duration(timeunit)
966 .into_series(),
967 dt => panic!("into_duration not implemented for {dt:?}"),
968 }
969 }
970
971 pub fn str_value(&self, index: usize) -> PolarsResult<Cow<'_, str>> {
973 Ok(self.0.get(index)?.str_value())
974 }
975 pub fn head(&self, length: Option<usize>) -> Series {
977 let len = length.unwrap_or(HEAD_DEFAULT_LENGTH);
978 self.slice(0, std::cmp::min(len, self.len()))
979 }
980
981 pub fn tail(&self, length: Option<usize>) -> Series {
983 let len = length.unwrap_or(TAIL_DEFAULT_LENGTH);
984 let len = std::cmp::min(len, self.len());
985 self.slice(-(len as i64), len)
986 }
987
988 pub fn unique_stable(&self) -> PolarsResult<Series> {
991 let idx = self.arg_unique()?;
992 unsafe { Ok(self.take_unchecked(&idx)) }
994 }
995
996 pub fn try_idx(&self) -> Option<&IdxCa> {
997 #[cfg(feature = "bigidx")]
998 {
999 self.try_u64()
1000 }
1001 #[cfg(not(feature = "bigidx"))]
1002 {
1003 self.try_u32()
1004 }
1005 }
1006
1007 pub fn idx(&self) -> PolarsResult<&IdxCa> {
1008 #[cfg(feature = "bigidx")]
1009 {
1010 self.u64()
1011 }
1012 #[cfg(not(feature = "bigidx"))]
1013 {
1014 self.u32()
1015 }
1016 }
1017
1018 pub fn estimated_size(&self) -> usize {
1031 let mut size = 0;
1032 match self.dtype() {
1033 #[cfg(feature = "object")]
1035 DataType::Object(_) => {
1036 let ArrowDataType::FixedSizeBinary(size) = self.chunks()[0].dtype() else {
1037 unreachable!()
1038 };
1039 return self.len() * *size;
1041 },
1042 _ => {},
1043 }
1044
1045 size += self
1046 .chunks()
1047 .iter()
1048 .map(|arr| estimated_bytes_size(&**arr))
1049 .sum::<usize>();
1050
1051 size
1052 }
1053
1054 pub fn as_list(&self) -> ListChunked {
1056 let s = self.rechunk();
1057 let values = s.chunks()[0].clone();
1059 let offsets = (0i64..(s.len() as i64 + 1)).collect::<Vec<_>>();
1060 let offsets = unsafe { Offsets::new_unchecked(offsets) };
1061
1062 let dtype = LargeListArray::default_datatype(
1063 s.dtype().to_physical().to_arrow(CompatLevel::newest()),
1064 );
1065 let new_arr = LargeListArray::new(dtype, offsets.into(), values, None);
1066 let mut out = ListChunked::with_chunk(s.name().clone(), new_arr);
1067 out.set_inner_dtype(s.dtype().clone());
1068 out
1069 }
1070
1071 pub fn row_encode_unordered(&self) -> PolarsResult<BinaryOffsetChunked> {
1072 row_encode::_get_rows_encoded_ca_unordered(
1073 self.name().clone(),
1074 &[self.clone().into_column()],
1075 )
1076 }
1077
1078 pub fn row_encode_ordered(
1079 &self,
1080 descending: bool,
1081 nulls_last: bool,
1082 ) -> PolarsResult<BinaryOffsetChunked> {
1083 row_encode::_get_rows_encoded_ca(
1084 self.name().clone(),
1085 &[self.clone().into_column()],
1086 &[descending],
1087 &[nulls_last],
1088 false,
1089 )
1090 }
1091}
1092
1093impl Default for Series {
1094 fn default() -> Self {
1095 NullChunked::new(PlSmallStr::EMPTY, 0).into_series()
1096 }
1097}
1098
1099impl Deref for Series {
1100 type Target = dyn SeriesTrait;
1101
1102 fn deref(&self) -> &Self::Target {
1103 self.0.as_ref()
1104 }
1105}
1106
1107impl<'a> AsRef<dyn SeriesTrait + 'a> for Series {
1108 fn as_ref(&self) -> &(dyn SeriesTrait + 'a) {
1109 self.0.as_ref()
1110 }
1111}
1112
1113impl<T: PolarsPhysicalType> AsRef<ChunkedArray<T>> for dyn SeriesTrait + '_ {
1114 fn as_ref(&self) -> &ChunkedArray<T> {
1115 let Some(ca) = self.as_any().downcast_ref::<ChunkedArray<T>>() else {
1118 panic!(
1119 "implementation error, cannot get ref {:?} from {:?}",
1120 T::get_static_dtype(),
1121 self.dtype()
1122 );
1123 };
1124
1125 ca
1126 }
1127}
1128
1129impl<T: PolarsPhysicalType> AsMut<ChunkedArray<T>> for dyn SeriesTrait + '_ {
1130 fn as_mut(&mut self) -> &mut ChunkedArray<T> {
1131 if !self.as_any_mut().is::<ChunkedArray<T>>() {
1132 panic!(
1133 "implementation error, cannot get ref {:?} from {:?}",
1134 T::get_static_dtype(),
1135 self.dtype()
1136 );
1137 }
1138
1139 self.as_any_mut().downcast_mut::<ChunkedArray<T>>().unwrap()
1142 }
1143}
1144
1145#[cfg(test)]
1146mod test {
1147 use crate::prelude::*;
1148 use crate::series::*;
1149
1150 #[test]
1151 fn cast() {
1152 let ar = UInt32Chunked::new("a".into(), &[1, 2]);
1153 let s = ar.into_series();
1154 let s2 = s.cast(&DataType::Int64).unwrap();
1155
1156 assert!(s2.i64().is_ok());
1157 let s2 = s.cast(&DataType::Float32).unwrap();
1158 assert!(s2.f32().is_ok());
1159 }
1160
1161 #[test]
1162 fn new_series() {
1163 let _ = Series::new("boolean series".into(), &vec![true, false, true]);
1164 let _ = Series::new("int series".into(), &[1, 2, 3]);
1165 let ca = Int32Chunked::new("a".into(), &[1, 2, 3]);
1166 let _ = ca.into_series();
1167 }
1168
1169 #[test]
1170 #[cfg(feature = "dtype-date")]
1171 fn roundtrip_list_logical_20311() {
1172 let list = ListChunked::from_chunk_iter(
1173 PlSmallStr::from_static("a"),
1174 [ListArray::new(
1175 ArrowDataType::LargeList(Box::new(ArrowField::new(
1176 LIST_VALUES_NAME,
1177 ArrowDataType::Int32,
1178 true,
1179 ))),
1180 unsafe { Offsets::new_unchecked(vec![0, 1]) }.into(),
1181 PrimitiveArray::new(ArrowDataType::Int32, vec![1i32].into(), None).to_boxed(),
1182 None,
1183 )],
1184 );
1185 let list = unsafe { list.from_physical_unchecked(DataType::Date) }.unwrap();
1186 assert_eq!(list.dtype(), &DataType::List(Box::new(DataType::Date)));
1187 }
1188
1189 #[test]
1190 #[cfg(feature = "dtype-struct")]
1191 fn new_series_from_empty_structs() {
1192 let dtype = DataType::Struct(vec![]);
1193 let empties = vec![AnyValue::StructOwned(Box::new((vec![], vec![]))); 3];
1194 let s = Series::from_any_values_and_dtype("".into(), &empties, &dtype, false).unwrap();
1195 assert_eq!(s.len(), 3);
1196 }
1197 #[test]
1198 fn new_series_from_arrow_primitive_array() {
1199 let array = UInt32Array::from_slice([1, 2, 3, 4, 5]);
1200 let array_ref: ArrayRef = Box::new(array);
1201
1202 let _ = Series::try_new("foo".into(), array_ref).unwrap();
1203 }
1204
1205 #[test]
1206 fn series_append() {
1207 let mut s1 = Series::new("a".into(), &[1, 2]);
1208 let s2 = Series::new("b".into(), &[3]);
1209 s1.append(&s2).unwrap();
1210 assert_eq!(s1.len(), 3);
1211
1212 let s2 = Series::new("b".into(), &[3.0]);
1214 assert!(s1.append(&s2).is_err())
1215 }
1216
1217 #[test]
1218 #[cfg(feature = "dtype-decimal")]
1219 fn series_append_decimal() {
1220 let s1 = Series::new("a".into(), &[1.1, 2.3])
1221 .cast(&DataType::Decimal(38, 2))
1222 .unwrap();
1223 let s2 = Series::new("b".into(), &[3])
1224 .cast(&DataType::Decimal(38, 0))
1225 .unwrap();
1226
1227 {
1228 let mut s1 = s1.clone();
1229 s1.append(&s2).unwrap();
1230 assert_eq!(s1.len(), 3);
1231 assert_eq!(s1.get(2).unwrap(), AnyValue::Decimal(300, 38, 2));
1232 }
1233
1234 {
1235 let mut s2 = s2;
1236 s2.extend(&s1).unwrap();
1237 assert_eq!(s2.get(2).unwrap(), AnyValue::Decimal(2, 38, 0));
1238 }
1239 }
1240
1241 #[test]
1242 fn series_slice_works() {
1243 let series = Series::new("a".into(), &[1i64, 2, 3, 4, 5]);
1244
1245 let slice_1 = series.slice(-3, 3);
1246 let slice_2 = series.slice(-5, 5);
1247 let slice_3 = series.slice(0, 5);
1248
1249 assert_eq!(slice_1.get(0).unwrap(), AnyValue::Int64(3));
1250 assert_eq!(slice_2.get(0).unwrap(), AnyValue::Int64(1));
1251 assert_eq!(slice_3.get(0).unwrap(), AnyValue::Int64(1));
1252 }
1253
1254 #[test]
1255 fn out_of_range_slice_does_not_panic() {
1256 let series = Series::new("a".into(), &[1i64, 2, 3, 4, 5]);
1257
1258 let _ = series.slice(-3, 4);
1259 let _ = series.slice(-6, 2);
1260 let _ = series.slice(4, 2);
1261 }
1262}