[Pandas] dataframe의 row를 shuffle하는법 아래 명령어를 사용하여 추후 데이터 프레임을 shuffle 할 일이 있을 때 사용할 것 # row 전체 shuffle df = df.sample(frac=1) # shuffling하고 index reset df = df.sample(frac=1).reset_index(drop=True) 언어/Python 2021.03.22