Skip to content

Commit

Permalink
Mention dim keyword in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed May 30, 2021
1 parent fbc9844 commit 219e6a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ Summary statistics exported by NaNStatistics are generally named the same as the
* `nanextrema`
* `nanrange` (range between nanmaximum and nanminimum)

These functions will generally support the same `dims` keyword as their normal Julia counterparts (though are most efficient when operating on an entire collection).
These functions will generally support the same `dims` keyword argument as their normal Julia counterparts (though are most efficient when operating on an entire collection).
As an alternative to `dims`, the `dim` keyword is also supported, which behaves identially to `dims` except that it also (as is the norm in some other languages) drops any singleton dimensions that have been reduced over.
```
julia> a = rand(100000);
Expand Down

2 comments on commit 219e6a9

@brenhinkeller
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Enable dim option (as dims, but drop reduced dimensions)
  • Various bugfixes

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/37829

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" 219e6a9af558d3e62661160b208fd3958214562d
git push origin v0.3.0

Please sign in to comment.