Hapus baris DataFrame Pertama
df = df.iloc[1: , :]
Cruel Crossbill
df = df.iloc[1: , :]
df = df.iloc[3:]
n = 3
# Drop first N columns of dataframe
df = df.iloc[: , n:]