I\'m sure this is simple, but as a complete newbie to python, I\'m having trouble figuring out how to iterate over variables in a pandas dataframe and run a regress
pandas
You can use iteritems():
iteritems()
for name, values in df.iteritems(): print('{name}: {value}'.format(name=name, value=values[0]))