Giter Site home page Giter Site logo

Comments (5)

rhshadrach avatar rhshadrach commented on July 4, 2024

Thanks for the report. Can you simplify this? Produce the DataFrame that goes into the groupby explicitly (i.e. remove the use of assign, sort_values, and query), and show the result you get.

from pandas.

asishm avatar asishm commented on July 4, 2024

df.groupby.first has a skipna argument that defaults to True https://pandas.pydata.org/docs/reference/api/pandas.core.groupby.DataFrameGroupBy.first.html

Try setting that to False.

In [190]: pd.DataFrame({'a': [1, 1, 2, 2], 'b': [np.nan, '2', '3', '4']}).groupby('a').first(skipna=False)
Out[190]:
     b
a
1  NaN
2    3

In [191]: pd.DataFrame({'a': [1, 1, 2, 2], 'b': [np.nan, '2', '3', '4']}).groupby('a').first()
Out[191]:
   b
a
1  2
2  3

from pandas.

sehHeiden avatar sehHeiden commented on July 4, 2024

Okay, my bad.

Made sure, that I have > 2.2.1 on all machines.
skipna, did help. Problem was, when I search for the documentation for first. I find the DataFrame.first and not the DataFrameGroupBy.first.
I think, this is a problem, but something different.

from pandas.

rhshadrach avatar rhshadrach commented on July 4, 2024

@sehHeiden - it's not clear to me if your issue is resolved or not. If it isn't resolved, can you post a reproducible example (see my previous comment).

from pandas.

sehHeiden avatar sehHeiden commented on July 4, 2024

Solved.
@asishm s solution works. Tested with 2.2.2, but does not work with 2.2.0 as it does not have the skipna parameter.

Optional wish: Do link GroupBy.first in the DataFrame.first documentation.

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.