i like to rotate the row in cyclic like clock but i would like every row will rotate differently according to the column of "n_roll"
so if i had that df
data={"col1":[2,3,4,5],
"col2":[4,2,4,6],
"col3":[7,6,9,11],
"col4":[14,11,22,8],
"name":["A","A","V","A"],
"n_roll":[1,2,2,3]}
df=pd.DataFrame.from_dict(data)
df
so i want it to look like this
data={"col1":[14,6,9,6],
"col2":[2,11,22,11],
"col3":[4,3,4,8],
"col4":[7,2,4,5],
"name":["A","A","V","A"],
"n_roll":[1,2,2,3]}
df=pd.DataFrame.from_dict(data)
df
Maybe something like that: coll_to_roll=["col1","col2","col3","col4"]
df[coll_to_roll] = np.roll(df[coll_to_roll],1,df["n_roll"])
You can reuse existing function with convert DataFrame and column to numpy arrays: