OpenMendel / OrdinalMultinomialModels.jl

ordered multinomial models

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

automatically drop intercept in formula

Hua-Zhou opened this issue · comments

Current code requires users to explicitly exclude intercept in formula, e.g., @formula(y ~ 0 + sex). Should automatically drop intercept, i.e., @formula(y ~ sex) leads to same result as @formula(y ~ 0 + sex).