Finally figured out how to make the scatter plot dot point size depend on the value
```
mydata.plot.scatter(figsize=(20,10),
y='level_0', x='level_1'
,s=mydata['count']
,c='count'
,colormap='viridis'
)
```
Wonder why they don't simply use the column name...
#python #pandas