Coder Social home page Coder Social logo

Pandas pinned to < 2.1.0 about pyemu HOT 3 OPEN

briochh avatar briochh commented on July 23, 2024
Pandas pinned to < 2.1.0

from pyemu.

Comments (3)

briochh avatar briochh commented on July 23, 2024

e.g.

  • There seem to be issues setting a new column as a string using the .loc[idx, col] slice accessor: pandas-dev/pandas#55025. Presumably the internals set the column to np.nan which is then falling short of the impending strict upcasting ban https://pandas.pydata.org/pdeps/0006-ban-upcasting.html when it try to put str values in there. Results in > "FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas."
  • There is a bug in 2.1 that is not dealing with columns containing commas when reading whitespace delimited pandas-dev/pandas#54918
  • Concatenating with an empty dataframe now also raises a warning. Either we need to ensure not empty before or (eventually) dropna(all) after concatenation (I think); I guess the latter will continue to raise a warning for now...
  • Accessing series entries using numpy-like index df.col[i] is deprecated. The expectation now is to use df.col.iloc[i] or presumably, df.col.values[i] or maybe df.iloc[i].col (maybe?!)

from pyemu.

briochh avatar briochh commented on July 23, 2024

also:

  • FutureWarning: The argument 'date_parser' is deprecated and will be removed in a future version. So may need a bit of a hack around this...

from pyemu.

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.