df_pre๋ผ๋ ๊ณต๊ฐ์ ๋ฐ์ดํฐ๋ฅผ ๋ถ๋ฌ์ต๋๋ค. sample() ํจ์ : ์๋ณธ ๋ฐ์ดํฐ์ ๋ช %๋ฅผ ์ฌ์ฉํ ์ง๋ฅผ ์ง์ , ์๋ณธ ๋ฐ์ดํฐ์์ ์ ํด์ง ๋น์จ๋งํผ ๋๋ค์ผ๋ก ๋ฝ์์ค๋ ํจ์ frac = 1 : ์๋ณธ ๋ฐ์ดํฐ์ 100%๋ฅผ ๋ถ๋ฌ์ค๋ผ๋ ์๋ฏธ (frac = 0.5๋ก ์ง์ ํ๋ฉด 50%๋ง ๋๋ค) df_pre = pd.read_csv(’../dataset/wine.csv’, header=None) df = df_pre.sample(frac=1) print(df.info()) Data columns (total 13 columns): 0 6497 non-null float64 1 6497 non-null float64 2 6497 non-null float64 3 6497 non-null float64 4 6497 non-nul..