Pandas' DataFrame() constructor used to accept a set as its columns argument, but no longer does.
This simply converts the set to a list before creating the data frame. There may be better approaches to deal with this issue, but I'm not familiar enough with this package to know about them.
Closes #192
Pandas' DataFrame() constructor used to accept a
set
as itscolumns
argument, but no longer does.This simply converts the
set
to alist
before creating the data frame. There may be better approaches to deal with this issue, but I'm not familiar enough with this package to know about them.