Currently, if a column happens to have only nulls, an exception is thrown with the error:
Invalid: Unable to infer type of object array, were all null
It is possible to specify the type of the column, that will be used instead of inferring the type?
Versions:
feather-format==0.3.1
pandas==0.19.1
Sample code:
feather.write_dataframe(pandas.DataFrame([None]*5), '/tmp/test.feather')