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

How do I add a column to my data frame that states the order count of occurrences of a value in another column? This is what I want the result to look like:

   Fruit orderCount
1 Orange          1
2 Banana          1
3 Orange          2
4  Apple          1
5 Orange          3
6 Banana          2

For the first observation of a value in the column Fruit, I want the corresponding orderCount to be 1, for the second observation 2 and so on.

Thanks for any help.

See Question&Answers more detail:os

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

1 Answer

You can try getanID from my "splitstackshape" package:

library(splitstackshape)
getanID(mydf, "Fruit")
#     Fruit .id
# 1: Orange   1
# 2: Banana   1
# 3: Orange   2
# 4:  Apple   1
# 5: Orange   3
# 6: Banana   2

In base R, you can use ave with seq_along for the aggregation function.


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

548k questions

547k answers

4 comments

86.3k users

...