Giter VIP home page Giter VIP logo

Comments (2)

alexander-beedie avatar alexander-beedie commented on September 24, 2024 1

That is pyarrow default behaviour for pandas conversion (which we use for this). If you want a faster and more accurate conversion (including a much-improved string type) you need to opt-in to pandas' newer arrow-backed dtypes, like so:

pd_df = df.to_pandas(use_pyarrow_extension_array=True)
pd_df.dtypes
# ID             int64[pyarrow]
# Name    large_string[pyarrow]
# Age            int64[pyarrow]

Once the pandas ecosystem has more fully adopted the arrow dtypes (which will take a bit of time) this will likely become the default conversion path. For now it requires opt-in.

from polars.

Wainberg avatar Wainberg commented on September 24, 2024

This issue should be closed because it's not a bug - pandas doesn't have a dedicated string dtype when using NumPy arrays as the backing, even if you literally pass it a NumPy string array:

>>> pd.DataFrame({'a': np.array(['a', 'b'], dtype='U1')}).dtypes
a    object
dtype: object

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.