@@ -145,75 +145,6 @@ function freqtable(x::PooledDataVector...; usena::Bool = false)
145
145
end
146
146
end
147
147
148
-
149
- # Specialize one-way table until https://github.com/JuliaLang/julia/issues/13979
150
- # is backported to 0.4
151
- function freqtable (x:: AbstractVector ;
152
- # Parametric unions are currently not supported for keyword arguments,
153
- # so weights are restricted to Float64 for now
154
- # https://github.com/JuliaLang/julia/issues/3738
155
- weights:: Union{Void, AbstractVector{Float64}} = nothing ,
156
- subset:: Union{Void, AbstractVector{Int}, AbstractVector{Bool}} = nothing )
157
- if subset != nothing
158
- x = y[subset]
159
-
160
- if weights != nothing
161
- weights = weights[subset]
162
- end
163
- end
164
-
165
- l = (length (x),)
166
-
167
- if weights != nothing && length (weights) != l[1 ]
168
- error (" 'weights' (length $(length (weights)) ) must be of the same length as vectors (length $(l[1 ]) )" )
169
- end
170
-
171
- counttype = weights == nothing ? Int : eltype (weights)
172
- d = Dict {eltype(x), counttype} ()
173
-
174
- for (i, el) in enumerate (x)
175
- index = ht_keyindex (d, el)
176
-
177
- if weights == nothing
178
- if index > 0
179
- d. vals[index] += 1
180
- else
181
- d[el] = 1
182
- end
183
- else
184
- @inbounds w = weights[i]
185
-
186
- if index > 0
187
- d. vals[index] += w
188
- else
189
- d[el] = w
190
- end
191
- end
192
- end
193
-
194
- k = collect (keys (d))
195
-
196
- s = Set {eltype(x)} ()
197
- for j in 1 : length (k)
198
- push! (s, k[j])
199
- end
200
-
201
- dimnames = unique (s)
202
- T = eltype (dimnames)
203
- if method_exists (isless, (T, T))
204
- sort! (dimnames)
205
- end
206
-
207
- a = zeros (counttype, length (dimnames))
208
- na = NamedArray (a, (dimnames,), (" Dim1" ,))
209
-
210
- for (k, v) in d
211
- na[k] = v
212
- end
213
-
214
- na
215
- end
216
-
217
148
function freqtable (d:: DataFrame , x:: Symbol... ; args... )
218
149
a = freqtable ([d[y] for y in x]. .. ; args... )
219
150
setdimnames! (a, x)
0 commit comments