I want to convert a Pandas DataFrame series to a List.
In [63]: bayFails
Out[64]:
0 [0, 1, 4, 5, 6, 8, 9, 12, 13, 14]
In [63]: type(bayFails)
Out[64]:
<class 'pandas.core.series.Series'>
Can someone show me how to convert bayFails into a list?