Skip to content

Commit

Permalink
fix format string
Browse files Browse the repository at this point in the history
  • Loading branch information
alecloudenback committed Mar 20, 2024
1 parent fefc9c8 commit dcde0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ benchmarks = CSV.read(file,DataFrame)
benchmarks.relative_mean = benchmarks.mean ./ minimum(benchmarks.mean)
header = (["Language", "Algorithm", "Function name", "Median","Mean","Relative Mean"],
[ "", "", "", "[nanoseconds]","[nanoseconds]",""]);
pretty_table(benchmarks;header,formatters = ft_printf("%'.1d"))
pretty_table(benchmarks;header,formatters = ft_printf("%0.1d"))
```
\output{./code/getdata}

Expand Down

0 comments on commit dcde0f8

Please sign in to comment.