Skip to content

Commit

Permalink
fix: choropleth frq annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
engisalor committed Oct 25, 2023
1 parent 224dec3 commit c42678d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/freqs_fig.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def choropleth_figure(
anno_1 = f"World = {wld}"
if "frq" in df["statistic"].values:
frq = df.loc[df["iso3"] == "WLD", "frq"].sum()
anno_1 = f"World frq_log10 = {wld} & frq = {int(frq):,}"
anno_1 = f"World frq_log10 = {wld} & frq = {frq}"
else:
anno_1 = ""
footer = (
Expand Down

0 comments on commit c42678d

Please sign in to comment.