Giter Site home page Giter Site logo

Comments (8)

stinodego avatar stinodego commented on August 18, 2024 1

Good suggestion - we can do the same 'trick' as we do in replace.

from polars.

Arengard avatar Arengard commented on August 18, 2024

just use

map = {
"a": "x",
"b": "y",
"c": "z",
}

df.with_columns(
polars.col("A").replace(map)
)

from polars.

avhz avatar avhz commented on August 18, 2024

Is there a way that we can make this work with regex ?

I have tried something like:

import regex
import polars 

df = polars.DataFrame({
    "x": ["a", "b", "c", "1", "2", "3"],
})

map = {
    regex.compile(r"[a-z]"): "alpha",
    regex.compile(r"[0-9]"): "digit",
}

df.with_columns(
    polars.col("x").replace(map)
)

For my personal use case, I need to replace a large number of regex patterns, and it's not very ergonomic to use two lists because it can be hard to keep track of what is replacing what.

Another possibility is a list of tuples:

map = [
    (r"[a-z]", "alpha"),
    (r"[0-9]", "digit"),
]

This (in my opinion) is nicer to follow than something like:

old = [r"[a-z]", r"[0-9]"]
new = ["alpha", "digit"]

from polars.

stinodego avatar stinodego commented on August 18, 2024

A dict is just going to be syntactic sugar. You can just define your map and then call str.replace_many(map.keys(), map.values()).

from polars.

avhz avatar avhz commented on August 18, 2024

That gives me:

TypeError: cannot create expression literal for value of type dict_keys: 
...

Hint: Pass `allow_object=True` to accept any value and create a literal of type Object.

from polars.

stinodego avatar stinodego commented on August 18, 2024

Call list on each input then. I'm just saying: this is just some syntactic sugar that you can do yourself. You don't need us to take care of it. Though it would be nice if we did.

from polars.

avhz avatar avhz commented on August 18, 2024

I must be missing something, as none of the following work for me:

## ============================================================================

import regex
import polars

## ============================================================================

df = polars.DataFrame(
    {
        "x": ["a", "b", "c", "1", "2", "3"],
    }
)

## ============================================================================

map = {
    regex.compile(r"[a-z]"): "alpha",
    regex.compile(r"[0-9]"): "digit",
}

df.with_columns(polars.col("x").replace(map))
df.with_columns(polars.col("x").replace(map.keys(), map.values()))
df.with_columns(polars.col("x").replace(list(map.keys()), list(map.values())))

## ============================================================================

map = {
    r"[a-z]": "alpha",
    r"[0-9]": "digit",
}

df.with_columns(polars.col("x").str.replace_many(map))
df.with_columns(polars.col("x").str.replace_many(map.keys(), map.values()))
df.with_columns(polars.col("x").str.replace_many(list(map.keys()), list(map.values())))

## ============================================================================

All throw an exception except the third (when calling list()), which does not throw an exception, but also does not match the regex pattern, so I am left with the original dataframe.

from polars.

cmdlineluser avatar cmdlineluser commented on August 18, 2024

There are a few different issues:

  1. You're passing regex.compile() objects - which Polars does not understand.

Polars uses the Rust crate https://github.com/rust-lang/regex - so you must pass "strings" when using the regex functions.

  1. .str.replace_many does not work with regular expressions. (perhaps a note could be added to the docs?)

It uses https://github.com/BurntSushi/aho-corasick which works with "literal strings" only.

It sounds like you may really be asking for:

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.