I've been googling for an hour or so and haven't found what I am looking for. Here is where I am at in my code.
I used BS to pull the information down and save it to a CSV file. The CSV has x,y coordinates which I can make into a scatterplot.
similar to this (there are about 1,500 datapoints and obviously 100 combinations)
x,y
0,6
1,2
0,7
4,6
9,9
0,0
4,4
1,2
etc.
What I would like to do is make the size of the points on the scatterplot scale with the frequency of how often they appear.
df = pd.read_csv("book8.csv")
df.plot(kind = 'scatter',x='x',y='y')
plt.show()
The arrays are just numbers between 0 and 9. I'd like to make the size scale to how often combinations of 0-9 show up.
I currently just have this, it's not really useful obviously.
https://i.stack.imgur.com/daiXF.jpg
Do I need to set x and y into their own arrays to accomplish this instead of using the dataframe(df)?