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に行く必要があります。
ありがとうございました!