# Dataset name : df
Int.Index Int.Line Name Index Index.Line Amount
340 1 John 440 1 700
"" 2 John 440 2 100
"" 3 John 400 3 50
450 1 May 500 1 2401
5694 1 Paul 6023 1 1312
"" 2 Paul 6023 2 7244
期望输出
# Desired ouput
Int.Index Int.Line Name Index Index.Line Amount
340 1 John 440 1 700
340 2 John 440 2 100
340 3 John 400 3 50
450 1 May 500 1 2401
5694 1 Paul 6023 1 1312
5694 2 Paul 6023 2 7244
我是初学者,知道group_by
功能在做什么却无法实现
复制它的一部分。