Humanize.jl icon indicating copy to clipboard operation
Humanize.jl copied to clipboard

Humanize numbers: data sizes, datetime deltas, digit separators

Results 10 Humanize.jl issues
Sort by recently updated
recently updated
newest added

E.g. using thousands, millions, billions, etc ``` 1234567.43 -> 1.2 million ```

Hi, I'm new to GitHub and Julia (and programming in general), so apologies if this isn't the correct avenue for this type of "contribution" . I noticed that one of...

Fixed the spelling of the variable "separator" (from "seperator") in the `digitsep` function.

```julia julia> using Humanize julia> Humanize.datasize(161803; style=:dec, format="%.3f") "161.803 kB" julia> Humanize.datasize(161803; style=:gnu, format="%.3f") "158.011K" julia> Humanize.datasize(-161803; style=:dec, format="%.3f") "-161803.000 B" julia> Humanize.datasize(-161803; style=:gnu, format="%.3f") "-161803.000" ``` Look at the...

the Dates stdlib defines `Nanosecond` and `Microsecond` it would be good to have those also supported by `timedelta`

I generated the `.github` directory using `PkgTemplates` v0.7.49. I modified its output in two ways: I changed the minimum julia version to 1.0 from 1.6 and changed the branch name...

This builds on #19. I will rebase this after that is merged. When I discovered that julia 1.11 added a `public` keyword, it reminded me of the conversation at #11,...

This was only necessary in Julia versions prior to `v"0.7.0-beta2.199"`.

Tests pass for me locally. Let's hope this kicks off Travis.