Merge pull request #9 from prashantkhurana/python-3-zip-list

Wrap zip() with list() for Python 3
pull/8/merge
Kevin Markham 2016-10-30 15:33:11 -04:00 committed by GitHub
commit 84f03ae1d0
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_))"
]
},
{