Skip to content

Commit

Permalink
remove old pivot code
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 18, 2022
1 parent 20ae29f commit 498f8b3
Show file tree
Hide file tree
Showing 19 changed files with 8 additions and 801 deletions.
1 change: 0 additions & 1 deletion polars/polars-core/src/frame/asof_join/groups.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use super::*;
use crate::frame::select::Selection;
use crate::utils::split_df;
use crate::vector_hasher::df_rows_to_hashes_threaded;
use crate::POOL;
Expand Down
3 changes: 1 addition & 2 deletions polars/polars-core/src/frame/explode.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::chunked_array::ops::explode::offsets_to_indexes;
use crate::frame::select::Selection;
use crate::prelude::*;
use arrow::buffer::Buffer;
use std::collections::VecDeque;
Expand Down Expand Up @@ -189,7 +188,7 @@ impl DataFrame {
let ids = self.select(id_vars)?;
let len = self.height();

let mut value_vars = value_vars.into_iter();
let value_vars = value_vars.into_iter();

let mut dataframe_chunks = VecDeque::with_capacity(value_vars.size_hint().0);

Expand Down
1 change: 0 additions & 1 deletion polars/polars-core/src/frame/groupby/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use self::hashing::*;
use crate::chunked_array::builder::PrimitiveChunkedBuilder;
use crate::frame::select::Selection;
use crate::prelude::*;
#[cfg(feature = "groupby_list")]
use crate::utils::Wrap;
Expand Down

0 comments on commit 498f8b3

Please sign in to comment.