I have these three lists:
amountOfYes = [38, 33, 30, 29, 29, 29, 28, 28, 27, 27, 27, 26, 26, 26, 26]
amountOfNo = [39, 35, 33, 32, 30, 28, 24, 22, 21, 21, 21, 20, 20, 20, 19]
index = [0, 118, 393, 317, 1, 8, 9, 29, 226, 297, 331, 52, 105, 251, 316]
amountOfYes & amountOfNo are lists filled with the amount of Yes and No that the top 15 sessions with most attendance had and Index is a list filled with the correspondent position that voting.
the first voting had 38 yes and 39 no, the 118th had 33 yes and 35 no.
How do I plot the amount of yes and no with the corresponding index?
EDIT:
The idea is to create a line graph similar to this one:

This chart has the first 20 votings, I need the votings specific votings of Index
I was going with
plt.plot(amountOfYes[index], label = 'Yes', color = 'red')
plt.plot( amountOfNo[index], label = 'No', color = 'black')
The X-axis should be the index and the Y the number of votes each option got

