2016-04-28 8 views

Antwort

5

Um dies zu beurteilen Sie die regplot() Funktion die scatter_kws arg wie so kann füttern:

import seaborn as sns 
tips = sns.load_dataset("tips") 
sns.regplot(x="total_bill", y="tip", data=tips, 
      marker='o', color='red', scatter_kws={'s':2}) 

small points

sns.regplot(x="total_bill", y="tip", data=tips, 
       marker='o', color='red', scatter_kws={'s':20}) 

big points