DataFrames: convert column data type

A more general way to do this is (assuming the column is called x)

df[!,:x] = convert.(Bool,df[!,:x])
13 Likes