How to iterate over columns of pandas dataframe to run regression

for column in df:
    print(df[column])

Leave a Comment