Giter Site home page Giter Site logo

Comments (3)

Aloqeely avatar Aloqeely commented on July 22, 2024 2

Thanks for opening the issue. This seems more like a usage question which should be asked on Stack overflow instead.

But, to answer your question, yes you can do that by using getattr, the implementation would look something like this:

PANDAS_VERSION = Version(pd.__version__)
PANDAS_210 = PANDAS_VERSION >= Version("2.1.0")

select_map = 'map'

if not PANDAS_210:
   select_map = 'applymap'

getattr(df, select_map)(lambda x: len(str(x)))

from pandas.

Aloqeely avatar Aloqeely commented on July 22, 2024

Another implementation would be to rely on hasattr instead of checking the pandas version, something like:

if hasattr(df, "map"):
    df.map(lambda x: len(str(x)))
else:
    df.applymap(lambda x: len(str(x)))

Feel free to choose whichever method you like!

from pandas.

quant12345 avatar quant12345 commented on July 22, 2024

@Aloqeely thank you. The first is what need.

from pandas.

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.