Hi all,
I've a csv file with lots of binary columns. True values are encoded as 'true' and missing values indicate False values. When I use ``pandas.read_csv('file.csv', true_values=['true'])`` the columns have dtype ``object`` because of the missing values. When I properly encode False values as 'false' then the columns are indeed bool. Is there a way to treat columns with one value and missing values as boolean? It would be a huge memory safer for me - the proper encoded version has a 4x larger file size but 10x smaller memory footprint as a DataFrame.
thanks,
Peter
PS: if its not possible - is that something people are interested in and if so should I prepare a PR for it?