728x90
scatter-plots
-
캐글 data_visualization/04-scatter-plots<Kaggle-Course> 2023. 3. 17. 16:52
sns.scatterplot(x=candy_data['sugarpercent'], y=candy_data['winpercent']) # Your code here sns.regplot(x=candy_data['sugarpercent'], y=candy_data['winpercent']) # Your code here sns.scatterplot(x='pricepercent', y='winpercent', hue='chocolate', data=candy_data) # Your code here sns.lmplot(x='pricepercent', y='winpercent', hue='chocolate', data=candy_data) # Your code here sns.swarmplot(x="chocol..