polars_core/series/series_trait.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
use std::any::Any;
use std::borrow::Cow;
use std::sync::RwLockReadGuard;
use arrow::bitmap::{Bitmap, MutableBitmap};
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use crate::chunked_array::cast::CastOptions;
use crate::chunked_array::metadata::MetadataTrait;
#[cfg(feature = "object")]
use crate::chunked_array::object::PolarsObjectSafe;
use crate::prelude::*;
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum IsSorted {
Ascending,
Descending,
Not,
}
impl IsSorted {
pub fn reverse(self) -> Self {
use IsSorted::*;
match self {
Ascending => Descending,
Descending => Ascending,
Not => Not,
}
}
}
macro_rules! invalid_operation_panic {
($op:ident, $s:expr) => {
panic!(
"`{}` operation not supported for dtype `{}`",
stringify!($op),
$s._dtype()
)
};
}
pub enum BitRepr {
Small(UInt32Chunked),
Large(UInt64Chunked),
}
pub(crate) mod private {
use super::*;
use crate::chunked_array::metadata::MetadataFlags;
use crate::chunked_array::ops::compare_inner::{TotalEqInner, TotalOrdInner};
pub trait PrivateSeriesNumeric {
/// Return a bit representation
///
/// If there is no available bit representation this returns `None`.
fn bit_repr(&self) -> Option<BitRepr>;
}
pub trait PrivateSeries {
#[cfg(feature = "object")]
fn get_list_builder(
&self,
_name: PlSmallStr,
_values_capacity: usize,
_list_capacity: usize,
) -> Box<dyn ListBuilderTrait> {
invalid_operation_panic!(get_list_builder, self)
}
/// Get field (used in schema)
fn _field(&self) -> Cow<Field>;
fn _dtype(&self) -> &DataType;
fn compute_len(&mut self);
fn _get_flags(&self) -> MetadataFlags;
fn _set_flags(&mut self, flags: MetadataFlags);
unsafe fn equal_element(
&self,
_idx_self: usize,
_idx_other: usize,
_other: &Series,
) -> bool {
invalid_operation_panic!(equal_element, self)
}
#[allow(clippy::wrong_self_convention)]
fn into_total_eq_inner<'a>(&'a self) -> Box<dyn TotalEqInner + 'a> {
invalid_operation_panic!(into_total_eq_inner, self)
}
#[allow(clippy::wrong_self_convention)]
fn into_total_ord_inner<'a>(&'a self) -> Box<dyn TotalOrdInner + 'a> {
invalid_operation_panic!(into_total_ord_inner, self)
}
fn vec_hash(&self, _build_hasher: PlRandomState, _buf: &mut Vec<u64>) -> PolarsResult<()> {
polars_bail!(opq = vec_hash, self._dtype());
}
fn vec_hash_combine(
&self,
_build_hasher: PlRandomState,
_hashes: &mut [u64],
) -> PolarsResult<()> {
polars_bail!(opq = vec_hash_combine, self._dtype());
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_min(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_max(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// If the [`DataType`] is one of `{Int8, UInt8, Int16, UInt16}` the `Series` is
/// first cast to `Int64` to prevent overflow issues.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_sum(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_std(&self, groups: &GroupsProxy, _ddof: u8) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_var(&self, groups: &GroupsProxy, _ddof: u8) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "algorithm_group_by")]
unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "bitwise")]
unsafe fn agg_and(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "bitwise")]
unsafe fn agg_or(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
/// # Safety
///
/// Does no bounds checks, groups must be correct.
#[cfg(feature = "bitwise")]
unsafe fn agg_xor(&self, groups: &GroupsProxy) -> Series {
Series::full_null(self._field().name().clone(), groups.len(), self._dtype())
}
fn subtract(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = subtract, self._dtype());
}
fn add_to(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = add, self._dtype());
}
fn multiply(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = multiply, self._dtype());
}
fn divide(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = divide, self._dtype());
}
fn remainder(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = remainder, self._dtype());
}
#[cfg(feature = "algorithm_group_by")]
fn group_tuples(&self, _multithreaded: bool, _sorted: bool) -> PolarsResult<GroupsProxy> {
polars_bail!(opq = group_tuples, self._dtype());
}
#[cfg(feature = "zip_with")]
fn zip_with_same_type(
&self,
_mask: &BooleanChunked,
_other: &Series,
) -> PolarsResult<Series> {
polars_bail!(opq = zip_with_same_type, self._dtype());
}
#[allow(unused_variables)]
fn arg_sort_multiple(
&self,
by: &[Column],
_options: &SortMultipleOptions,
) -> PolarsResult<IdxCa> {
polars_bail!(opq = arg_sort_multiple, self._dtype());
}
}
}
pub trait SeriesTrait:
Send + Sync + private::PrivateSeries + private::PrivateSeriesNumeric
{
/// Rename the Series.
fn rename(&mut self, name: PlSmallStr);
fn get_metadata(&self) -> Option<RwLockReadGuard<dyn MetadataTrait>> {
None
}
fn boxed_metadata<'a>(&'a self) -> Option<Box<dyn MetadataTrait + 'a>> {
None
}
/// Get the lengths of the underlying chunks
fn chunk_lengths(&self) -> ChunkLenIter;
/// Name of series.
fn name(&self) -> &PlSmallStr;
/// Get field (used in schema)
fn field(&self) -> Cow<Field> {
self._field()
}
/// Get datatype of series.
fn dtype(&self) -> &DataType {
self._dtype()
}
/// Underlying chunks.
fn chunks(&self) -> &Vec<ArrayRef>;
/// Underlying chunks.
///
/// # Safety
/// The caller must ensure the length and the data types of `ArrayRef` does not change.
unsafe fn chunks_mut(&mut self) -> &mut Vec<ArrayRef>;
/// Number of chunks in this Series
fn n_chunks(&self) -> usize {
self.chunks().len()
}
/// Shrink the capacity of this array to fit its length.
fn shrink_to_fit(&mut self) {
// no-op
}
/// Take `num_elements` from the top as a zero copy view.
fn limit(&self, num_elements: usize) -> Series {
self.slice(0, num_elements)
}
/// Get a zero copy view of the data.
///
/// When offset is negative the offset is counted from the
/// end of the array
fn slice(&self, _offset: i64, _length: usize) -> Series;
/// Get a zero copy view of the data.
///
/// When offset is negative the offset is counted from the
/// end of the array
fn split_at(&self, _offset: i64) -> (Series, Series);
#[doc(hidden)]
fn append(&mut self, _other: &Series) -> PolarsResult<()>;
#[doc(hidden)]
fn extend(&mut self, _other: &Series) -> PolarsResult<()>;
/// Filter by boolean mask. This operation clones data.
fn filter(&self, _filter: &BooleanChunked) -> PolarsResult<Series>;
/// Take from `self` at the indexes given by `idx`.
///
/// Null values in `idx` because null values in the output array.
///
/// This operation is clone.
fn take(&self, _indices: &IdxCa) -> PolarsResult<Series>;
/// Take from `self` at the indexes given by `idx`.
///
/// Null values in `idx` because null values in the output array.
///
/// # Safety
/// This doesn't check any bounds.
unsafe fn take_unchecked(&self, _idx: &IdxCa) -> Series;
/// Take from `self` at the indexes given by `idx`.
///
/// This operation is clone.
fn take_slice(&self, _indices: &[IdxSize]) -> PolarsResult<Series>;
/// Take from `self` at the indexes given by `idx`.
///
/// # Safety
/// This doesn't check any bounds.
unsafe fn take_slice_unchecked(&self, _idx: &[IdxSize]) -> Series;
/// Get length of series.
fn len(&self) -> usize;
/// Check if Series is empty.
fn is_empty(&self) -> bool {
self.len() == 0
}
/// Aggregate all chunks to a contiguous array of memory.
fn rechunk(&self) -> Series;
fn rechunk_validity(&self) -> Option<Bitmap> {
if self.chunks().len() == 1 {
return self.chunks()[0].validity().cloned();
}
if !self.has_nulls() || self.is_empty() {
return None;
}
let mut bm = MutableBitmap::with_capacity(self.len());
for arr in self.chunks() {
if let Some(v) = arr.validity() {
bm.extend_from_bitmap(v);
} else {
bm.extend_constant(arr.len(), true);
}
}
Some(bm.into())
}
/// Drop all null values and return a new Series.
fn drop_nulls(&self) -> Series {
if self.null_count() == 0 {
Series(self.clone_inner())
} else {
self.filter(&self.is_not_null()).unwrap()
}
}
/// Returns the sum of the array as an f64.
fn _sum_as_f64(&self) -> f64 {
invalid_operation_panic!(_sum_as_f64, self)
}
/// Returns the mean value in the array
/// Returns an option because the array is nullable.
fn mean(&self) -> Option<f64> {
None
}
/// Returns the std value in the array
/// Returns an option because the array is nullable.
fn std(&self, _ddof: u8) -> Option<f64> {
None
}
/// Returns the var value in the array
/// Returns an option because the array is nullable.
fn var(&self, _ddof: u8) -> Option<f64> {
None
}
/// Returns the median value in the array
/// Returns an option because the array is nullable.
fn median(&self) -> Option<f64> {
None
}
/// Create a new Series filled with values from the given index.
///
/// # Example
///
/// ```rust
/// use polars_core::prelude::*;
/// let s = Series::new("a".into(), [0i32, 1, 8]);
/// let s2 = s.new_from_index(2, 4);
/// assert_eq!(Vec::from(s2.i32().unwrap()), &[Some(8), Some(8), Some(8), Some(8)])
/// ```
fn new_from_index(&self, _index: usize, _length: usize) -> Series;
fn cast(&self, _dtype: &DataType, options: CastOptions) -> PolarsResult<Series>;
/// Get a single value by index. Don't use this operation for loops as a runtime cast is
/// needed for every iteration.
fn get(&self, _index: usize) -> PolarsResult<AnyValue>;
/// Get a single value by index. Don't use this operation for loops as a runtime cast is
/// needed for every iteration.
///
/// This may refer to physical types
///
/// # Safety
/// Does not do any bounds checking
unsafe fn get_unchecked(&self, _index: usize) -> AnyValue {
invalid_operation_panic!(get_unchecked, self)
}
fn sort_with(&self, _options: SortOptions) -> PolarsResult<Series> {
polars_bail!(opq = sort_with, self._dtype());
}
/// Retrieve the indexes needed for a sort.
#[allow(unused)]
fn arg_sort(&self, options: SortOptions) -> IdxCa {
invalid_operation_panic!(arg_sort, self)
}
/// Count the null values.
fn null_count(&self) -> usize;
/// Return if any the chunks in this [`ChunkedArray`] have nulls.
fn has_nulls(&self) -> bool;
/// Get unique values in the Series.
fn unique(&self) -> PolarsResult<Series> {
polars_bail!(opq = unique, self._dtype());
}
/// Get unique values in the Series.
///
/// A `null` value also counts as a unique value.
fn n_unique(&self) -> PolarsResult<usize> {
polars_bail!(opq = n_unique, self._dtype());
}
/// Get first indexes of unique values.
fn arg_unique(&self) -> PolarsResult<IdxCa> {
polars_bail!(opq = arg_unique, self._dtype());
}
/// Get a mask of the null values.
fn is_null(&self) -> BooleanChunked;
/// Get a mask of the non-null values.
fn is_not_null(&self) -> BooleanChunked;
/// return a Series in reversed order
fn reverse(&self) -> Series;
/// Rechunk and return a pointer to the start of the Series.
/// Only implemented for numeric types
fn as_single_ptr(&mut self) -> PolarsResult<usize> {
polars_bail!(opq = as_single_ptr, self._dtype());
}
/// Shift the values by a given period and fill the parts that will be empty due to this operation
/// with `Nones`.
///
/// *NOTE: If you want to fill the Nones with a value use the
/// [`shift` operation on `ChunkedArray<T>`](../chunked_array/ops/trait.ChunkShift.html).*
///
/// # Example
///
/// ```rust
/// # use polars_core::prelude::*;
/// fn example() -> PolarsResult<()> {
/// let s = Series::new("series".into(), &[1, 2, 3]);
///
/// let shifted = s.shift(1);
/// assert_eq!(Vec::from(shifted.i32()?), &[None, Some(1), Some(2)]);
///
/// let shifted = s.shift(-1);
/// assert_eq!(Vec::from(shifted.i32()?), &[Some(2), Some(3), None]);
///
/// let shifted = s.shift(2);
/// assert_eq!(Vec::from(shifted.i32()?), &[None, None, Some(1)]);
///
/// Ok(())
/// }
/// example();
/// ```
fn shift(&self, _periods: i64) -> Series;
/// Get the sum of the Series as a new Scalar.
///
/// If the [`DataType`] is one of `{Int8, UInt8, Int16, UInt16}` the `Series` is
/// first cast to `Int64` to prevent overflow issues.
fn sum_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = sum, self._dtype());
}
/// Get the max of the Series as a new Series of length 1.
fn max_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = max, self._dtype());
}
/// Get the min of the Series as a new Series of length 1.
fn min_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = min, self._dtype());
}
/// Get the median of the Series as a new Series of length 1.
fn median_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = median, self._dtype());
}
/// Get the variance of the Series as a new Series of length 1.
fn var_reduce(&self, _ddof: u8) -> PolarsResult<Scalar> {
polars_bail!(opq = var, self._dtype());
}
/// Get the standard deviation of the Series as a new Series of length 1.
fn std_reduce(&self, _ddof: u8) -> PolarsResult<Scalar> {
polars_bail!(opq = std, self._dtype());
}
/// Get the quantile of the ChunkedArray as a new Series of length 1.
fn quantile_reduce(&self, _quantile: f64, _method: QuantileMethod) -> PolarsResult<Scalar> {
polars_bail!(opq = quantile, self._dtype());
}
/// Get the bitwise AND of the Series as a new Series of length 1,
fn and_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = and_reduce, self._dtype());
}
/// Get the bitwise OR of the Series as a new Series of length 1,
fn or_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = or_reduce, self._dtype());
}
/// Get the bitwise XOR of the Series as a new Series of length 1,
fn xor_reduce(&self) -> PolarsResult<Scalar> {
polars_bail!(opq = xor_reduce, self._dtype());
}
/// Get the first element of the [`Series`] as a [`Scalar`]
///
/// If the [`Series`] is empty, a [`Scalar`] with a [`AnyValue::Null`] is returned.
fn first(&self) -> Scalar {
let dt = self.dtype();
let av = self.get(0).map_or(AnyValue::Null, AnyValue::into_static);
Scalar::new(dt.clone(), av)
}
/// Get the last element of the [`Series`] as a [`Scalar`]
///
/// If the [`Series`] is empty, a [`Scalar`] with a [`AnyValue::Null`] is returned.
fn last(&self) -> Scalar {
let dt = self.dtype();
let av = if self.len() == 0 {
AnyValue::Null
} else {
// SAFETY: len-1 < len if len != 0
unsafe { self.get_unchecked(self.len() - 1) }.into_static()
};
Scalar::new(dt.clone(), av)
}
#[cfg(feature = "approx_unique")]
fn approx_n_unique(&self) -> PolarsResult<IdxSize> {
polars_bail!(opq = approx_n_unique, self._dtype());
}
/// Clone inner ChunkedArray and wrap in a new Arc
fn clone_inner(&self) -> Arc<dyn SeriesTrait>;
#[cfg(feature = "object")]
/// Get the value at this index as a downcastable Any trait ref.
fn get_object(&self, _index: usize) -> Option<&dyn PolarsObjectSafe> {
invalid_operation_panic!(get_object, self)
}
#[cfg(feature = "object")]
/// Get the value at this index as a downcastable Any trait ref.
///
/// # Safety
/// This function doesn't do any bound checks.
unsafe fn get_object_chunked_unchecked(
&self,
_chunk: usize,
_index: usize,
) -> Option<&dyn PolarsObjectSafe> {
invalid_operation_panic!(get_object_chunked_unchecked, self)
}
/// Get a hold to self as `Any` trait reference.
fn as_any(&self) -> &dyn Any;
/// Get a hold to self as `Any` trait reference.
/// Only implemented for ObjectType
fn as_any_mut(&mut self) -> &mut dyn Any {
invalid_operation_panic!(as_any_mut, self)
}
#[cfg(feature = "checked_arithmetic")]
fn checked_div(&self, _rhs: &Series) -> PolarsResult<Series> {
polars_bail!(opq = checked_div, self._dtype());
}
#[cfg(feature = "rolling_window")]
/// Apply a custom function over a rolling/ moving window of the array.
/// This has quite some dynamic dispatch, so prefer rolling_min, max, mean, sum over this.
fn rolling_map(
&self,
_f: &dyn Fn(&Series) -> Series,
_options: RollingOptionsFixedWindow,
) -> PolarsResult<Series> {
polars_bail!(opq = rolling_map, self._dtype());
}
}
impl (dyn SeriesTrait + '_) {
pub fn unpack<N>(&self) -> PolarsResult<&ChunkedArray<N>>
where
N: 'static + PolarsDataType,
{
polars_ensure!(&N::get_dtype() == self.dtype(), unpack);
Ok(self.as_ref())
}
}