Giter Site home page Giter Site logo

Comments (2)

henryharbeck avatar henryharbeck commented on July 19, 2024

Also somewhat related, but I don't think warrants its own issue, is the missing use of pl.lit in these suggestion as well.

string = "qwerty"
substring = "we"

# only the substring
df_1 = pl.DataFrame({"substring": [substring]})

# Suggests to replace with `pl.col("substring").is_in(string)`
df_1.select(
    pl.col("substring").map_elements(
        lambda substring: substring in string,
        return_dtype=pl.Boolean,
    )
)
df_1.select(pl.col("substring").is_in(string)) # ColumnNotFoundError: qwerty


# only the string
df_2 = pl.DataFrame({"string": [string]})

# Suggests to replace with `substring.is_in(pl.col("string"))`
df_2.select(
    pl.col("string").map_elements(
        lambda string: substring in string,
        return_dtype=pl.Boolean,
    )
)
df_2.select(substring.is_in(pl.col("string"))) # AttributeError: 'str' object has no attribute 'is_in'

In both cases adding pl.lit(...) around the string literal makes the code not raise, but produces the incorrect output.

It is possible that the Expr in Expr.str.contains(...) (as the correct suggestion) would not be a column in the frame and need to be suggested as a literal.

from polars.

MarcoGorelli avatar MarcoGorelli commented on July 19, 2024

thanks @henryharbeck for the report - i think it should be possible to correct these without too much complexity

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.