I have a pandas data frame with each row of data containing an id and several binary data that has only two options 0 or 1.
id, feat1, feat2, feat3, feat4
aa, 0, 1, 1, 0
ab, 1, 0, 1, 0
ac, 0, 0, 1, 0
and etc
I want to be able to visualise this with id on y-axis, and all features on x axis.. with a dot representing 1 and no dot representing 0.. almost like the above dataframe but in plot form
