Giter VIP home page Giter VIP logo

Comments (4)

kszlim avatar kszlim commented on September 22, 2024

I tried to create a repro like:

import pandas as pd

import os
import polars as pl

os.environ["POLARS_FORCE_OOC"] = "1"
pl.Config.set_verbose(True)
pl.enable_string_cache()

df = pd.DataFrame({"a": ["hi", "bye", "hello"], "b": [3, 1 ,2 ], "c": ["test3", "test1", "test2"], "d": ["d1", "d2", "d3"], "e": [2,1,1]}) # Still not sure if it's got something to do with pyarrow produced files or not
df["a"] = df["a"].astype("category")
df["c"] = df["c"].astype("category")
# df["d"] = df["d"].astype("category")
df.to_parquet("test.parquet")
ldf = pl.scan_parquet("test.parquet")
ldf = ldf.sort("e", "b")
ldf = ldf.with_columns(d = pl.concat_list(pl.col("c"), pl.col("d")))

ldf = ldf.explode(pl.col("d"))
ldf = ldf.sort("d", "e")
df = ldf.collect(streaming=True)
print(df)

But this seems to work fine.

from polars.

kszlim avatar kszlim commented on September 22, 2024

I also tried the following thinking that perhaps it's valid to search for bin offset values within a string series like so:

        DataType::String => {
            let ca = s.str().unwrap();
            let ca = ca.as_binary();

            let idx = match search_values.dtype() {
                DataType::BinaryOffset => {
                    let search_values = search_values.binary_offset().unwrap();
                    search_sorted_bin_array_with_binary_offset(&ca, search_values, side, descending)
                },
                DataType::String => {
                    let search_values = search_values.str()?;
                    let search_values = search_values.as_binary();
                    search_sorted_bin_array(&ca, &search_values, side, descending)
                },
                _ => unreachable!(),
            };

            Ok(IdxCa::new_vec(s.name(), idx))
        },

But that panics with a different error, the attempted code is probably just conceptually wrong, I don't know how the string view type is implemented.

from polars.

kszlim avatar kszlim commented on September 22, 2024

@ritchie46 do you know if it's valid to search a String series with binary offset? or is the issue related to the losing track of the schema through the execution?

from polars.

kszlim avatar kszlim commented on September 22, 2024

This seems to have been fixed. Perhaps by 2b28777?

from polars.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.