Imagine that we have a list similar to this :
[
[1115, 1061],
[134],
[304, 357, 253, 359],
[512, 513, 514],
[543],
[576],
[533],
[130],
[513, 357, 358]
]
how can we plot a scatter plot that has the values in the list as it y value and the index value of the list as the x value.
As an example, y=1115 should be shown at x=1 and y=1061 should be shown at x=1 as well, etc.
