Skip to content

Commit 059afbb

Browse files
committed
Remove workaround for pre-0.4.2 Julia support
1 parent 786519d commit 059afbb

File tree

2 files changed

+1
-70
lines changed

2 files changed

+1
-70
lines changed

REQUIRE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.4
1+
julia 0.4.2
22
NamedArrays
33
DataArrays
44
DataFrames

src/freqtable.jl

-69
Original file line numberDiff line numberDiff line change
@@ -145,75 +145,6 @@ function freqtable(x::PooledDataVector...; usena::Bool = false)
145145
end
146146
end
147147

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-
217148
function freqtable(d::DataFrame, x::Symbol...; args...)
218149
a = freqtable([d[y] for y in x]...; args...)
219150
setdimnames!(a, x)

0 commit comments

Comments
 (0)