-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: Sparse ModelMatrix support #1040
Changes from 6 commits
c61a0ec
d46fc37
288552c
e1b068e
4a9a65f
fd12a5d
ff6f706
f94dd83
dd0ae91
db58318
25935c0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,8 +48,10 @@ type ModelFrame | |
contrasts::Dict{Symbol, ContrastsMatrix} | ||
end | ||
|
||
type ModelMatrix{T <: @compat(Union{Float32, Float64})} | ||
m::Matrix{T} | ||
typealias ModelMatrixContainer{T<:AbstractFloat} AbstractMatrix{T} | ||
|
||
type ModelMatrix{T <: ModelMatrixContainer} | ||
m::T | ||
assign::Vector{Int} | ||
end | ||
|
||
|
@@ -321,8 +323,8 @@ function setcontrasts!(mf::ModelFrame, new_contrasts::Dict) | |
end | ||
setcontrasts!(mf::ModelFrame; kwargs...) = setcontrasts!(mf, Dict(kwargs)) | ||
|
||
asmatrix(a::AbstractMatrix) = a | ||
asmatrix(v::AbstractVector) = reshape(v, (length(v), 1)) | ||
asmatrix(T::Type, a::AbstractMatrix) = convert(T, a) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this function is only used in |
||
asmatrix(T::Type, v::AbstractVector) = convert(T, reshape(v, (length(v), 1))) | ||
|
||
""" | ||
StatsBase.model_response(mf::ModelFrame) | ||
|
@@ -337,45 +339,46 @@ function StatsBase.model_response(mf::ModelFrame) | |
end | ||
end | ||
|
||
modelmat_cols(v::DataVector) = asmatrix(convert(Vector{Float64}, v.data)) | ||
modelmat_cols(v::Vector) = asmatrix(convert(Vector{Float64}, v)) | ||
modelmat_cols{T<:ModelMatrixContainer}(::Type{T}, v::DataVector) = asmatrix(T, convert(Vector{Float64}, v.data)) | ||
modelmat_cols{T<:ModelMatrixContainer}(::Type{T}, v::Vector) = asmatrix(T, convert(Vector{Float64}, v)) | ||
|
||
## construct model matrix columns from model frame + name (checks for contrasts) | ||
function modelmat_cols(name::Symbol, mf::ModelFrame; non_redundant::Bool = false) | ||
function modelmat_cols{T<:ModelMatrixContainer}(::Type{T}, name::Symbol, mf::ModelFrame; non_redundant::Bool = false) | ||
if haskey(mf.contrasts, name) | ||
modelmat_cols(mf.df[name], | ||
modelmat_cols(T, mf.df[name], | ||
non_redundant ? | ||
ContrastsMatrix{FullDummyCoding}(mf.contrasts[name]) : | ||
mf.contrasts[name]) | ||
else | ||
modelmat_cols(mf.df[name]) | ||
modelmat_cols(T, mf.df[name]) | ||
end | ||
end | ||
|
||
""" | ||
modelmat_cols(v::PooledDataVector, contrast::ContrastsMatrix) | ||
modelmat_cols(T::Type{ModelMatrixContainer}, v::PooledDataVector, contrast::ContrastsMatrix) | ||
|
||
Construct `ModelMatrix` columns based on specified contrasts, ensuring that | ||
Construct `ModelMatrix` columns of type `T` based on specified contrasts, ensuring that | ||
levels align properly. | ||
""" | ||
function modelmat_cols(v::PooledDataVector, contrast::ContrastsMatrix) | ||
function modelmat_cols{T<:ModelMatrixContainer}(::Type{T}, v::PooledDataVector, contrast::ContrastsMatrix) | ||
## make sure the levels of the contrast matrix and the categorical data | ||
## are the same by constructing a re-indexing vector. Indexing into | ||
## reindex with v.refs will give the corresponding row number of the | ||
## contrast matrix | ||
reindex = [findfirst(contrast.levels, l) for l in levels(v)] | ||
return contrast.matrix[reindex[v.refs], :] | ||
contrastmatrix = convert(T, contrast.matrix) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In what cases can There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
return contrastmatrix[reindex[v.refs], :] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This array creation can be extremely slow for sparse There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No idea. Why is it slow? Indexing rows shouldn't be a problem for sparse matrices AFAIK. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not an expert on sparse matrix indexing, but it seems to spend a lot of time sorting... Truncated profile output from a million-row reference vector and 5-column constrast matrix:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm... You could ask on the mailing list for advice about the best algorithm to do this for sparse matrices. I guess working column by column (for |
||
end | ||
|
||
""" | ||
expandcols(trm::Vector) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This signature should also be updated to mention the restriction on the element type. |
||
Create pairwise products of columns from a vector of matrices | ||
""" | ||
function expandcols(trm::Vector) | ||
function expandcols{T<:ModelMatrixContainer}(trm::Vector{T}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I can tell, the conversions here (and just above) are redundant since elements of |
||
if length(trm) == 1 | ||
asmatrix(convert(Array{Float64}, trm[1])) | ||
trm[1] | ||
else | ||
a = convert(Array{Float64}, trm[1]) | ||
b = expandcols(trm[2 : end]) | ||
a, b = trm[1], expandcols(trm[2 : end]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep the assignments on two lines. |
||
reduce(hcat, [broadcast(*, a, Compat.view(b, :, j)) for j in 1 : size(b, 2)]) | ||
end | ||
end | ||
|
@@ -437,21 +440,22 @@ If there is an intercept in the model, that column occurs first and its | |
Mixed-effects models include "random-effects" terms which are ignored when | ||
creating the model matrix. | ||
""" | ||
function ModelMatrix(mf::ModelFrame) | ||
@compat function (::Type{ModelMatrix{T}}){T<:ModelMatrixContainer}(mf::ModelFrame) | ||
sparsemm = T <: AbstractSparseMatrix | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This variable doesn't seem to be used anywhere. |
||
dfrm = mf.df | ||
terms = droprandomeffects(dropresponse!(mf.terms)) | ||
|
||
blocks = Matrix{Float64}[] | ||
blocks = T[] | ||
assign = Int[] | ||
if terms.intercept | ||
push!(blocks, ones(size(dfrm, 1), 1)) # columns of 1's is first block | ||
push!(assign, 0) # this block corresponds to term zero | ||
push!(assign, 0) # this block corresponds to term zero | ||
end | ||
|
||
factors = terms.factors | ||
|
||
## Map eval. term name + redundancy bool to cached model matrix columns | ||
eterm_cols = @compat Dict{Tuple{Symbol,Bool}, Array{Float64}}() | ||
eterm_cols = @compat Dict{Tuple{Symbol,Bool}, T}() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I couldn't find any reason not to restrict the Array dimension here. Did I miss something? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only issue I can think of is the case where a single-column term would give a column vector instead of a one-column matrix. But conversion will probably happen automatically, and tests should catch this. Have you run the tests of GLM.jl on the modified package? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From what I could tell |
||
## Accumulator for each term's vector of eval. term columns. | ||
|
||
## TODO: this method makes multiple copies of the data in the ModelFrame: | ||
|
@@ -462,7 +466,7 @@ function ModelMatrix(mf::ModelFrame) | |
## "promoted" full-rank versions of categorical columns for non-redundant | ||
## eval. terms: | ||
for (i_term, term) in enumerate(terms.terms) | ||
term_cols = Matrix{Float64}[] | ||
term_cols = T[] | ||
## Pull out the eval terms, and the non-redundancy flags for this term | ||
ff = Compat.view(factors, :, i_term) | ||
eterms = Compat.view(terms.eterms, ff) | ||
|
@@ -471,16 +475,17 @@ function ModelMatrix(mf::ModelFrame) | |
## and storing as necessary) | ||
for (et, nr) in zip(eterms, non_redundants) | ||
if ! haskey(eterm_cols, (et, nr)) | ||
eterm_cols[(et, nr)] = modelmat_cols(et, mf, non_redundant=nr) | ||
eterm_cols[(et, nr)] = modelmat_cols(T, et, mf, non_redundant=nr) | ||
end | ||
push!(term_cols, eterm_cols[(et, nr)]) | ||
end | ||
push!(blocks, expandcols(term_cols)) | ||
append!(assign, fill(i_term, size(blocks[end], 2))) | ||
end | ||
|
||
ModelMatrix{Float64}(reduce(hcat, blocks), assign) | ||
ModelMatrix{T}(reduce(hcat, blocks), assign) | ||
end | ||
ModelMatrix(mf::ModelFrame) = ModelMatrix{Matrix{Float64}}(mf) | ||
|
||
|
||
""" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,6 +107,8 @@ module TestFormula | |
|
||
## Tests for constructing ModelFrame and ModelMatrix | ||
|
||
sparsetype = SparseMatrixCSC{Float64,Int} | ||
|
||
d = DataFrame() | ||
d[:y] = [1:4;] | ||
d[:x1] = [5:8;] | ||
|
@@ -127,6 +129,10 @@ module TestFormula | |
@test mm.m[:,1] == ones(4) | ||
@test mm.m[:,2:3] == [x1 x2] | ||
|
||
smm = ModelMatrix{sparsetype}(mf) | ||
@test issparse(smm.m) | ||
@test mm.m == smm.m | ||
|
||
#test_group("expanding a PooledVec into a design matrix of indicators for each dummy variable") | ||
|
||
d[:x1p] = PooledDataArray(d[:x1]) | ||
|
@@ -138,6 +144,10 @@ module TestFormula | |
@test mm.m[:,4] == [0, 0, 0, 1.] | ||
@test coefnames(mf)[2:end] == ["x1p: 6", "x1p: 7", "x1p: 8"] | ||
|
||
smm = ModelMatrix{sparsetype}(mf) | ||
@test issparse(smm.m) | ||
@test mm.m == smm.m | ||
|
||
#test_group("create a design matrix from interactions from two DataFrames") | ||
## this was removed in commit dead4562506badd7e84a2367086f5753fa49bb6a | ||
|
||
|
@@ -199,18 +209,21 @@ module TestFormula | |
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [ones(4) x1.*x2] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
f = y ~ x1 * x2 | ||
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [ones(4) x1 x2 x1.*x2] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
df[:x1] = PooledDataArray(x1) | ||
x1e = [[0, 1, 0, 0] [0, 0, 1, 0] [0, 0, 0, 1]] | ||
f = y ~ x1 * x2 | ||
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [ones(4) x1e x2 [0, 10, 0, 0] [0, 0, 11, 0] [0, 0, 0, 12]] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
#test_group("Basic transformations") | ||
|
||
|
@@ -261,6 +274,7 @@ module TestFormula | |
mf = ModelFrame(y ~ x2, d) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [ones(4) x2] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
## @test model_response(mf) == y'' # fails: Int64 vs. Float64 | ||
|
||
df = deepcopy(d) | ||
|
@@ -294,11 +308,13 @@ module TestFormula | |
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [ones(4) x2.*x3.*x4] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
f = y ~ x1 & x2 & x3 | ||
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m[:, 2:end] == diagm(x2.*x3) | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
#test_group("Column groups in formulas") | ||
## set_group was removed in The Great Purge (55e47cd) | ||
|
@@ -346,6 +362,7 @@ module TestFormula | |
mf = ModelFrame(f, df) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == hcat(ones(4), x1.*x3, x1.*x4, x2.*x3, x2.*x4) | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
## Condensing nested :+ calls | ||
f = y ~ x1 + (x2 + (x3 + x4)) | ||
|
@@ -368,6 +385,7 @@ module TestFormula | |
mf = ModelFrame(y ~ x1m, d) | ||
mm = ModelMatrix(mf) | ||
@test mm.m[:, 2] == d[complete_cases(d), :x1m] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
## Same variable on left and right side | ||
mf = ModelFrame(x1 ~ x1, df) | ||
|
@@ -386,58 +404,68 @@ d[:n] = 1.:8 | |
|
||
## No intercept | ||
mf = ModelFrame(n ~ 0 + x, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == [1 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [1 0 | ||
0 1 | ||
1 0 | ||
0 1 | ||
1 0 | ||
0 1 | ||
1 0 | ||
0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["x: a", "x: b"] | ||
|
||
## No first-order term for interaction | ||
mf = ModelFrame(n ~ 1 + x + x&y, d, contrasts=cs) | ||
@test ModelMatrix(mf).m[:, 2:end] == [-1 -1 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m[:, 2:end] == [-1 -1 0 | ||
1 0 -1 | ||
-1 1 0 | ||
1 0 1 | ||
-1 -1 0 | ||
1 0 -1 | ||
-1 1 0 | ||
1 0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["(Intercept)", "x: b", "x: a & y: d", "x: b & y: d"] | ||
|
||
## When both terms of interaction are non-redundant: | ||
mf = ModelFrame(n ~ 0 + x&y, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == [1 0 0 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [1 0 0 0 | ||
0 1 0 0 | ||
0 0 1 0 | ||
0 0 0 1 | ||
1 0 0 0 | ||
0 1 0 0 | ||
0 0 1 0 | ||
0 0 0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["x: a & y: c", "x: b & y: c", | ||
"x: a & y: d", "x: b & y: d"] | ||
|
||
# only a three-way interaction: every term is promoted. | ||
mf = ModelFrame(n ~ 0 + x&y&z, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == eye(8) | ||
mm = ModelMatrix(mf) | ||
@test mm.m == eye(8) | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
|
||
# two two-way interactions, with no lower-order term. both are promoted in | ||
# first (both x and y), but only the old term (x) in the second (because | ||
# dropping x gives z which isn't found elsewhere, but dropping z gives x | ||
# which is found (implicitly) in the promoted interaction x&y). | ||
mf = ModelFrame(n ~ 0 + x&y + x&z, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == [1 0 0 0 -1 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [1 0 0 0 -1 0 | ||
0 1 0 0 0 -1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Preserve indentation with other lines. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Same in other places.) |
||
0 0 1 0 -1 0 | ||
0 0 0 1 0 -1 | ||
1 0 0 0 1 0 | ||
0 1 0 0 0 1 | ||
0 0 1 0 1 0 | ||
0 0 0 1 0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["x: a & y: c", "x: b & y: c", | ||
"x: a & y: d", "x: b & y: d", | ||
"x: a & z: f", "x: b & z: f"] | ||
|
@@ -446,14 +474,16 @@ mf = ModelFrame(n ~ 0 + x&y + x&z, d, contrasts=cs) | |
# this is because dropping x gives y&z which isn't present, but dropping y or z | ||
# gives x&z or x&z respectively, which are both present. | ||
mf = ModelFrame(n ~ 0 + x&y + x&z + x&y&z, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == [1 0 0 0 -1 0 1 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [1 0 0 0 -1 0 1 0 | ||
0 1 0 0 0 -1 0 1 | ||
0 0 1 0 -1 0 -1 0 | ||
0 0 0 1 0 -1 0 -1 | ||
1 0 0 0 1 0 -1 0 | ||
0 1 0 0 0 1 0 -1 | ||
0 0 1 0 1 0 1 0 | ||
0 0 0 1 0 1 0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["x: a & y: c", "x: b & y: c", | ||
"x: a & y: d", "x: b & y: d", | ||
"x: a & z: f", "x: b & z: f", | ||
|
@@ -463,20 +493,21 @@ mf = ModelFrame(n ~ 0 + x&y + x&z + x&y&z, d, contrasts=cs) | |
# promoted in both (along with lower-order term), because in every case, when | ||
# x is dropped, the remaining terms (1, y, and z) aren't present elsewhere. | ||
mf = ModelFrame(n ~ 0 + x + x&y + x&z, d, contrasts=cs) | ||
@test ModelMatrix(mf).m == [1 0 -1 0 -1 0 | ||
mm = ModelMatrix(mf) | ||
@test mm.m == [1 0 -1 0 -1 0 | ||
0 1 0 -1 0 -1 | ||
1 0 1 0 -1 0 | ||
0 1 0 1 0 -1 | ||
1 0 -1 0 1 0 | ||
0 1 0 -1 0 1 | ||
1 0 1 0 1 0 | ||
0 1 0 1 0 1] | ||
@test mm.m == ModelMatrix{sparsetype}(mf).m | ||
@test coefnames(mf) == ["x: a", "x: b", | ||
"x: a & y: d", "x: b & y: d", | ||
"x: a & z: f", "x: b & z: f"] | ||
|
||
|
||
|
||
## FAILS: When both terms are non-redundant and intercept is PRESENT | ||
## (not fully redundant). Ideally, would drop last column. Might make sense | ||
## to warn about this, and suggest recoding x and y into a single variable. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be clearer if it was called
AbstractFloatMatrix
or something like that.