Skip to content

Commit 40228e5

Browse files
authored
Merge pull request #8 from PharmCat/dev
Dev
2 parents a86524d + d91634d commit 40228e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MetidaStats"
22
uuid = "75cdad26-409a-4e43-8ad7-d54b4fa665a0"
33
authors = ["PharmCat <v.s.arnautov@yandex.ru>"]
4-
version = "0.1.2"
4+
version = "0.1.3"
55

66
[deps]
77

src/descriptive.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ end
146146
Possible values for `stats` is: :n, :posn, :mean, :var, :geom, :logmean, :logvar, :sd, :se, :cv, :geocv, :median, :min, :max, :range, :q1, :q3, :iqr, :kurt, :skew, :harmmean, :ses, :sek, :sum
147147
148148
"""
149-
function descriptives(data, vars = nothing, sort = nothing; kwargs...)
149+
function descriptives(data, vars, sort = nothing; kwargs...)
150150
if isa(vars, String) vars = [Symbol(vars)] end
151151
if isa(vars, Symbol) vars = [vars] end
152152
if isa(sort, String) sort = [Symbol(sort)] end
@@ -159,7 +159,7 @@ end
159159
"""
160160
descriptives(data; vars = nothing, sort = nothing, kwargs...)
161161
162-
Try to include all collumns with numbers.
162+
If `vars` is nothing - try to include all collumns with numbers.
163163
"""
164164
function descriptives(data; vars = nothing, sort = nothing, kwargs...)
165165
if isnothing(vars)

0 commit comments

Comments
 (0)