python-3-zip fix

pull/9/head
Prashant Khurana 2016-10-22 21:03:09 -04:00
parent 0e26828604
commit b556121d34
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@
],
"source": [
"# pair the feature names with the coefficients\n",
"zip(feature_cols, linreg.coef_)"
"list(zip(feature_cols, linreg.coef_))"
]
},
{