I have a pandas dataframe A,B, and posand want to plot A versus B but in such a way that a distinct graph is generated for each value of pos.
Meaning a single figure but a graph for all pos = 1, one for pos = 2 and so on
The dataframe is structured like this:
A B pos
1 6 2 1
2 2 10 2
3 1 3 4
4 8 1 1
5 6 1 1
How do I do that? Any help is appreciated.
