0
我需要將pandas DataFrame中的對象從一個位置移動到另一個位置,並將該對象的原始位置保留爲空白而不影響其他列。將pandas DataFrame中的對象從一個「單元格」移動到另一個「單元格」
employees = [0, 0, 0, 1, 0, 0, 0, 0, 0, 0]
levels = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
df = pd.DataFrame({"Employees":employees, "Level":levels})
#move employee 1 from index 3 to index 1 without altering Level column
#leave index 3 blank after moving employee 1
在視覺上,我需要去從starting point到end point。
謝謝!