Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Given a dataframe like this

   ImageId | Width | Height | lb0 | x0 | y0 | lb1 | x1 | y1 | lb2 | x2 | y2
0  abc     | 200   | 500    | ijk | 115| 8  | zyx | 15 | 16 | www | 23 | 42
1  def     | 300   | 800    | ijk | 91 | 23 | zyx | 16 | 15 | www | 8  | 4
2  ghi     | 700   | 400    | ijk | 230| 16 | zyx | 17 | 24 | www | 43 | 109
3  jkl     | 500   | 100    | ijk | 46 | 23 |     |    |    |     |    |
...

When I try to add to a column with

df['x0'] = df['x0'] + 1

I now get column x0 as follows:

151
127
266
82

Question:

  • How do I add a scalar value to a whole column in Pandas?
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

You probably don't have an int dtype. Doing

df['x0'] = df['x0'].astype(int) + 1

should work


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...