sneves commited on
Commit
364d645
·
verified ·
1 Parent(s): fb3a48a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -35,10 +35,10 @@ def make_esgScoresPlot(df, cik):
35
  to_display.set_index('Year', inplace=True)
36
 
37
  ax = sns.lineplot(data=to_display[['e_score', 's_score', 'g_score']] )
38
- ax.xlabel('year')
39
- ax.ylabel('score')
40
- ax.title('ESG scores for ')
41
- ax.legend(title='Legend', loc='upper left')
42
  return ax
43
 
44
  col = st.columns((1.5, 4.5, 2), gap='medium')
 
35
  to_display.set_index('Year', inplace=True)
36
 
37
  ax = sns.lineplot(data=to_display[['e_score', 's_score', 'g_score']] )
38
+ plt.xlabel('year')
39
+ plt.ylabel('score')
40
+ plt.title('ESG scores for ')
41
+ plt.legend(title='Legend', loc='upper left')
42
  return ax
43
 
44
  col = st.columns((1.5, 4.5, 2), gap='medium')