79471944

Date: 2025-02-27 08:06:01
Score: 6 🚩
Natty:
Report link

So there're multiple answers possible thanks to Ben Grossmann and user19077881, let me summarize it here (I'm new so I can't upvote Ben Grossmann's answer):

row = df.query("t == 3").astype(object).squeeze()
row = df.loc[df["t"] == 3].astype(object).squeeze()

The order is important:

  1. Convert the whole result of the query to "object" so pandas will not convert ints to floats and keep a global "object" type
  2. Use squeeze() to transform the queried row to a Series

And if there are multiple rows matching the query then extract the wanted row by using iloc between astype and squeeze:

row = df.query("t == 3").astype(object).iloc[wanted_idx].squeeze()
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): I'm new
  • RegEx Blacklisted phrase (2): can't upvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user19077881
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Damien