I have a data result from recommender system like this
for example
id content_id Rank
08773338 aaaa 1
08773338 bbbb 2
08773338 cccc 3
08333777 bbbb 1
08333777 aaaa 2
08333777 cccc 3
then I want to drop 'bbbb' content id so that it becomes like this
for example
id content_id Rank
08773338 aaaa 1
08773338 cccc 3
08333777 aaaa 2
08333777 cccc 3
How do I re-rank the rank column after the bbbb label is removed?
like this
id content_id Rank
08773338 aaaa 1
08773338 cccc 2
08333777 aaaa 1
08333777 cccc 2
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…