jpwahle commited on
Commit
2becae6
1 Parent(s): 44a6195

Add rounding to three decimal places

Browse files
Files changed (1) hide show
  1. main.py +4 -0
main.py CHANGED
@@ -110,6 +110,10 @@ def plot_and_return_stats(
110
  for year, title in sorted(year_title_dict.items())[:3]
111
  )
112
 
 
 
 
 
113
  return (
114
  title_authors,
115
  num_references,
 
110
  for year, title in sorted(year_title_dict.items())[:3]
111
  )
112
 
113
+ # Round CFDI and CADI
114
+ cfdi = round(cfdi, 3)
115
+ cadi = round(cadi, 3)
116
+
117
  return (
118
  title_authors,
119
  num_references,