def plot_author_contributions(commit_frame):
sns.boxplot(x='author', y='stats_total_lines',
data=commit_frame,
orient='v')
plt.title('Code Contributions by Authors')
plt.xlabel('Author')
plt.ylabel('Total Lines Committed')
plt.xticks(rotation=70)
plt.show()
评论列表
文章目录