Skip to content

Commit d129c40

Browse files
committed
add upper bounds
1 parent 1a3dde6 commit d129c40

File tree

3 files changed

+21
-17
lines changed

3 files changed

+21
-17
lines changed

Project.toml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,31 @@ version = "0.5.1"
44

55
[deps]
66
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
7+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
78
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
8-
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
9-
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
9+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
10+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
1011
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
12+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
13+
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
14+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
15+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1116
FixedEffects = "c8885935-8500-56a7-9867-7708b20db0eb"
1217
FixedEffectModels = "9d5cd8c9-2029-5cab-9928-427838db53e3"
1318
LeastSquaresOptim = "0fc2ff8b-aaa3-5acd-a817-1944a5e08891"
14-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
15-
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
16-
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
17-
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
18-
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
19-
2019

2120
[compat]
22-
DataFrames = "≥ 0.19.1"
23-
FixedEffectModels = "≥ 0.9.2"
24-
FixedEffects = "≥ 0.3.0"
25-
LeastSquaresOptim = "≥ 0.7.0"
26-
StatsBase = "≥ 0.22.0"
27-
StatsModels = "≥ 0.6.0"
28-
julia = "≥ 1.1.0"
21+
julia = "1"
22+
Reexport = "0"
23+
Distributions = "0"
24+
FillArrays = "0"
25+
StatsBase = "0"
26+
StatsModels = "0.6"
27+
Tables = "0"
28+
DataFrames = "0.19"
29+
FixedEffects = "0.4"
30+
FixedEffectModels = "0.9"
31+
LeastSquaresOptim = "0.7"
2932

3033
[extras]
3134
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

src/InteractiveFixedEffectModels.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ using LinearAlgebra
1111
using Statistics
1212
using Printf
1313

14+
1415
using StatsBase
1516
using StatsModels
16-
using CategoricalArrays
17+
using Tables
1718
using DataFrames
1819
using LeastSquaresOptim
1920
using FillArrays

src/fit.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function regife(df, f::FormulaTerm, vcov::CovarianceEstimator = Vcov.simple();
130130
## Construict vector y and matrix X
131131
##
132132
##############################################################################
133-
subdf = StatsModels.columntable(df[esample, unique(vcat(vars))])
133+
subdf = columntable(df[esample, unique(vcat(vars))])
134134

135135
formula_schema = apply_schema(formula, schema(formula, subdf, contrasts), StatisticalModel)
136136

0 commit comments

Comments
 (0)