Spaces:
Sleeping
Sleeping
Add rounding to three decimal places
Browse files
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,
|