mrungta8 commited on
Commit
e4ed941
1 Parent(s): 3d6a1b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -54,8 +54,8 @@ def generate_plot_maoc(input_maoc):
54
  ax.tick_params(axis='both', which='major', labelsize=12)
55
  percentile_of_input_maoc = percentileofscore(mean_citation_list, input_maoc)
56
  percentile_of_input_maoc = round(percentile_of_input_maoc, 2)
57
- title = f'The mAoC of your paper in greater than mAoC of {percentile_of_input_maoc}% of all the papers \n in our database (papers published until 2021 years)'
58
- plt.title(title, fontsize=16)
59
  return plt
60
 
61
  # sent a request
 
54
  ax.tick_params(axis='both', which='major', labelsize=12)
55
  percentile_of_input_maoc = percentileofscore(mean_citation_list, input_maoc)
56
  percentile_of_input_maoc = round(percentile_of_input_maoc, 2)
57
+ title = "The mAoC of your paper is at " + r"$\bf{" + str(percentile_of_input_maoc) + "}$" + "-th percentile of all the papers \n in our database (papers published until 2021 years)"
58
+ plt.title(title, fontsize=12)
59
  return plt
60
 
61
  # sent a request