I have a dataframe
from CSV data (an matrix) looks like this:
BS1 BS2 BS3 BS4 BS5 BS6 BS7 BS8 BS9
BS1 0 1 6 1 0 0 0 0 0
BS2 1 0 8 1 0 0 0 0 0
BS3 0 6 0 2 3 1 0 0 0
BS4 0 0 4 0 1 2 0 0 0
BS5 0 1 3 2 0 3 0 0 0
BS6 0 0 0 0 0 0 5 4 2
BS7 0 4 7 3 4 0 0 5 6
BS8 0 0 0 0 0 0 5 0 7
BS9 0 1 5 0 1 0 4 0 0
I want to make a 3D chart based on this CSV matrix data. However, the XY is string. How to do it?
the expected result looks like this link 3D Scatterplot with strings in Python
thank you.