Created
July 9, 2021 21:00
-
-
Save Padhma/99bc0ad82db27939eced274447bea9d6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| popular_df = github_df.nlargest(n=100,columns=['Star'])[['Issues','Pull_Requests','Commits','Contributors']] | |
| # set figure size and dpi | |
| fig, ax = plt.subplots(figsize=(6,4), dpi=100) | |
| # plot the correlation in a heatmap | |
| sns.heatmap(popular_df.corr(), linewidths=0.1, vmax=1.0, square=True, linecolor='white', annot=True, cmap='summer'); | |
| fig.suptitle('Correlation of contributions in Top 100 popular repositories',fontsize=16, color = '#333F4B'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment