I have a dataframe such as the following:
col_1 col_2 col_3
0 True True True
1 True True True
2 True True True
3 True True True
4 True True True
I would like to create a plot where:
x axis is the index value
y axis has got three rows (one for each column), where a scatter point is present on that row if it is False. Else it is not present.
Is this possible?