I'm running with python 3.7.6 and I have the following dataframe:
col_1 col_2 col_3 col_4
GP 1 1 1 1
MIN 1 1 1 1
PTS 1 1 1 1
FGM 1 1 0 1
FGA 0 1 0 0
FG% 0 1 1 1
3P Made 0 1 1 0
AST 0 1 1 0
STL 0 1 0 0
BLK 0 1 1 0
TOV 0 0 1 0
I want to plot the dataframe as scatter plot or other (dot's plot) where:
X axis - dataframe indexes
Y axis - dataframe columns
points on the graph are according to the values from dataframe (1 - show on graph and 0 not)
How can I do it ?

