Created
April 23, 2018 17:20
-
-
Save emredjan/97717c7d26e8d666e06c88a65397962d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plot_lm_3 = plt.figure(3) | |
plot_lm_3.set_figheight(8) | |
plot_lm_3.set_figwidth(12) | |
plt.scatter(model_fitted_y, model_norm_residuals_abs_sqrt, alpha=0.5) | |
sns.regplot(model_fitted_y, model_norm_residuals_abs_sqrt, | |
scatter=False, | |
ci=False, | |
lowess=True, | |
line_kws={'color': 'red', 'lw': 1, 'alpha': 0.8}) | |
plot_lm_3.axes[0].set_title('Scale-Location') | |
plot_lm_3.axes[0].set_xlabel('Fitted values') | |
plot_lm_3.axes[0].set_ylabel('$\sqrt{|Standardized Residuals|}$'); | |
# annotations | |
abs_sq_norm_resid = np.flip(np.argsort(model_norm_residuals_abs_sqrt), 0) | |
abs_sq_norm_resid_top_3 = abs_sq_norm_resid[:3] | |
for i in abs_norm_resid_top_3: | |
plot_lm_3.axes[0].annotate(i, | |
xy=(model_fitted_y[i], | |
model_norm_residuals_abs_sqrt[i])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment