Skip to content

Commit

Permalink
Update precompile statements
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed Jul 1, 2024
1 parent c6f0ddb commit 3c2df96
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@

histcounts(R, 0:0.1:1)
histcounts(0.5:9.5,0.5:9.5, 0:10,0:10)
histmean(1:10, 1:10)
histstd(1:10, 1:10)
nanbinmean(x, y, range(0,100,length=4))
nanbinmean(1:100, Y, range(0,100,length=4))
movmean(R, 3)
movmean(Y, 3)
nancumsum(y)
nanlogsumexp(y)
nanlogcumsumexp(y)
# nanmedian(Y, dims=1)
# nanmedian(Y, dims=2)
# nanpctile(Y, 50, dims=1)
Expand All @@ -27,6 +32,8 @@
nanmean(A)
nanstd(A)
nanvar(A)
nanskewness(A)
nankurtosis(A)
nanminimum(A)
nanmaximum(A)
nanargmin(A)
Expand Down

2 comments on commit 3c2df96

@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:

  • Add nanskewness and nankurtosis

@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/110178

Tagging

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.6.41 -m "<description of version>" 3c2df96c2d85a220cb75f112d9966c7ceefb701e
git push origin v0.6.41

Please sign in to comment.