loc and iloc in pandas dataframe code example
Example 1: iloc in dataframe
df=pd.read_csv('yourcsv.csv')
X=df.iloc[:,:-1].values
y=df.iloc[:,1].values
Example 2: pandas df by row index
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
Example 3: loc and iloc in pandas
iloc - default indexes (system generated)
loc - table indexes or we manually given indexes
Example 4: how to use loc and iloc in pandas
>>> df.iloc[0, 1]
2