firstedits_female = wikibios.columns_female['firstedit']
years_ago_female = [2015 - y for y in wikibios.columns_female['birth_year']]
-axes.scatter(firstedits_male, years_ago_male, alpha=0.1, c='green', linewidths=(0,), label='Male')
-axes.scatter(firstedits_female, years_ago_female, alpha=0.1, c='orange', linewidths=(0,), label='Female')
+axes.scatter(firstedits_male, years_ago_male, alpha=0.1, c='green', edgecolors='None', label='Male')
+axes.scatter(firstedits_female, years_ago_female, alpha=0.1, c='orange', edgecolors='None', label='Female')
axes.set_xlabel('Article Date')
axes.set_ylabel('Years Ago')
axes.set_yscale('log')