Sorry if my question sounds s..., I am new to matplotlib. I have a simple dataset in pandas dataFrame, looks like this:
TAG_1 TAG_2 testTime
0 5 10, 10 758.2
1 5 16, 4 1738.1
2 5 4, 3 752.2
3 5 5, 3 868.9
4 5 5, 4 742.3
Is there a way I can 3D plot such a data with matplotlib? TAG_1 and TAG_2 are just simple tags, their values are not important at all, So practically I would use just index column 2 times as X axis and Y axis and testTime column as Z axis. Could you provide me a sample code? thank you in advance.
This is the type of plot I am looking for.

EDIT:
I have managed to plot the following with @furas answer:



