How do I:
I tried:
y = dataframe.iloc[:,-3:]
The most efficient way:
1. Select last n columns
df1 = df.iloc[:,-n:]
2. Exclude last n columns
df1 = df.iloc[:,:-n]