1
1
import Base. ht_keyindex
2
2
3
- function freqtable (x:: AbstractVector... ;
4
- # Parametric unions are currently not supported for keyword arguments,
5
- # so weights are restricted to Float64 for now
6
- # https://github.com/JuliaLang/julia/issues/3738
7
- weights:: Union{Void, AbstractVector{Float64}} = nothing ,
8
- subset:: Union{Void, AbstractVector{Int}, AbstractVector{Bool}} = nothing )
9
- n = length (x)
10
-
3
+ # Internal function needed for now so that n is inferred
4
+ function _freqtable {n} (x:: NTuple{n} ,
5
+ weights:: Union{Void, AbstractVector{Float64}} = nothing ,
6
+ subset:: Union{Void, AbstractVector{Int}, AbstractVector{Bool}} = nothing )
11
7
if subset != nothing
12
- x = ntuple (i -> x[i][ subset], n )
8
+ x = map (y -> y[ subset], x )
13
9
14
10
if weights != nothing
15
11
weights = weights[subset]
@@ -78,20 +74,27 @@ function freqtable(x::AbstractVector...;
78
74
na
79
75
end
80
76
81
- function freqtable (x:: PooledDataVector... ; usena:: Bool = false )
82
- n = length (x)
83
- len = [length (y) for y in x]
77
+ freqtable (x:: AbstractVector... ;
78
+ # Parametric unions are currently not supported for keyword arguments,
79
+ # so weights are restricted to Float64 for now
80
+ # https://github.com/JuliaLang/julia/issues/3738
81
+ weights:: Union{Void, AbstractVector{Float64}} = nothing ,
82
+ subset:: Union{Void, AbstractVector{Int}, AbstractVector{Bool}} = nothing ) =
83
+ _freqtable (x, weights, subset)
84
+
85
+ # Internal function needed for now so that n is inferred
86
+ function _freqtable {n} (x:: NTuple{n, PooledDataVector} , usena = false )
87
+ len = map (length, x)
88
+ lev = map (levels, x)
84
89
85
90
for i in 1 : n
86
91
if len[1 ] != len[i]
87
92
error (string (" arguments are not of the same length: " , tuple (len... )))
88
93
end
89
94
end
90
95
91
- lev = [levels (y) for y in x]
92
-
93
96
if usena
94
- dims = ntuple (i -> length (lev[i] ) + 1 , n )
97
+ dims = map (l -> length (l ) + 1 , lev )
95
98
sizes = cumprod ([dims... ])
96
99
a = zeros (Int, dims)
97
100
@@ -115,9 +118,9 @@ function freqtable(x::PooledDataVector...; usena::Bool = false)
115
118
a[el] += 1
116
119
end
117
120
118
- NamedArray (a, ntuple (i -> [lev[i], " NA" ], n ), ntuple (i -> " Dim$i " , n))
121
+ NamedArray (a, map (l -> [l; " NA" ], lev ), ntuple (i -> " Dim$i " , n))
119
122
else
120
- dims = ntuple (i -> length (lev[i]), n)
123
+ dims = map ( length, lev) :: NTuple{n,Int}
121
124
sizes = cumprod ([dims... ])
122
125
a = zeros (Int, dims)
123
126
@@ -141,10 +144,12 @@ function freqtable(x::PooledDataVector...; usena::Bool = false)
141
144
end
142
145
end
143
146
144
- NamedArray (a, ntuple (i -> lev[i], n) , ntuple (i -> " Dim$i " , n))
147
+ NamedArray (a, lev, ntuple (i -> " Dim$i " , n))
145
148
end
146
149
end
147
150
151
+ freqtable (x:: PooledDataVector... ; usena:: Bool = false ) = _freqtable (x, usena)
152
+
148
153
function freqtable (d:: DataFrame , x:: Symbol... ; args... )
149
154
a = freqtable ([d[y] for y in x]. .. ; args... )
150
155
setdimnames! (a, x)
0 commit comments