I have a Pandas dataframe that looks like:
0 1 2 3 4
0 1 1 1 0 1
1 1 0 1 1 1
2 1 0 0 1 0
3 1 1 1 0 0
4 0 1 0 0 0
and I want to create a plot of this data (maybe using matplotlib) that looks like:
x x x x
x x x x
x x
x x x
x
Does anyone know of a way to do this? The plot does not need to be generated by matplotlib