Skip to content

Commit 0c8d318

Browse files
committed
updated to show outliers
1 parent 0712619 commit 0c8d318

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
736 Bytes
Loading

graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def graph():
66
df = pd.read_csv('metrics.csv')
77
print(df.head())
88

9-
# by default, outliers are not included. This helps pretty the plot
10-
sns.boxplot(x=df['Affiliation'], y=df['H-index'], showfliers=False)
9+
# by default, outliers should not be included. This helps pretty the plot
10+
sns.boxplot(x=df['Affiliation'], y=df['H-index'], showfliers=True)
1111
plt.xlabel('University')
1212
plt.ylabel('H-Index')
1313
plt.title('H-Index Distribution by University')

0 commit comments

Comments
 (0)