Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Aug 16, 2021
1 parent 90bd8c9 commit 83a147f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/descriptive.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ end
dataimport(data; vars, sort = nothing)
Import data.
* data - tabular data;
* vars - variables;
* sort - sort by categories.
"""
function dataimport(data; vars, sort = nothing)
if isa(vars, Symbol) vars = [vars] end
Expand Down Expand Up @@ -156,8 +160,9 @@ end
"""
descriptives(data::DataSet{T}; kwargs...) where T <: ObsData
* skipmissing
* skipnonpositive
* kwargs:
* `skipmissing`
* `skipnonpositive`
"""
function descriptives(data::DataSet{T}; kwargs...) where T <: ObsData
kwargs = Dict{Symbol, Any}(kwargs)
Expand Down

2 comments on commit 83a147f

@PharmCat
Copy link
Owner

Choose a reason for hiding this comment

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

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

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.1.0 -m "<description of version>" 83a147fef252270f77efb04fe0bfdf77bccdd177
git push origin v0.1.0

Please sign in to comment.