Skip to content

Commit 7864843

Browse files
update to FixedEffectModels 1.5 (#42)
* update to FixedEffectModels 1.5 * Update fit.jl * Update Project.toml
1 parent 12ae624 commit 7864843

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ src/other/*
99
*.log
1010
*.out
1111
*.synctex.gz
12-
examples/runbenchmark.jl
12+
examples/runbenchmark.jl
13+
.DS_Store

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "InteractiveFixedEffectModels"
22
uuid = "80307280-efb2-5c5d-af8b-a9c15821677b"
3-
version = "1.1.1"
3+
version = "1.1.2"
44

55
[deps]
66
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
@@ -20,11 +20,11 @@ Vcov = "ec2bfdc2-55df-4fc9-b9ae-4958c2cf2486"
2020

2121
[compat]
2222
DataFrames = "0.21, 0.22"
23-
FillArrays = "0.7, 0.8, 0.9, 0.10"
24-
FixedEffectModels = "1.3"
23+
FillArrays = "0.7, 0.8, 0.9, 0.10, 0.11"
24+
FixedEffectModels = "1.5"
2525
FixedEffects = "2"
2626
LeastSquaresOptim = "0.7, 0.8"
27-
Reexport = "0.2"
27+
Reexport = "0.2, 1.0"
2828
StatsBase = "0.33"
2929
StatsModels = "0.6"
3030
StatsFuns = "0.9"

src/fit.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function regife(
6565
Symbol(fesymbol(a)) factor_vars && error("FixedEffect should correspond to id or time dimension of the factor model")
6666
end
6767
end
68-
fes, ids, formula = FixedEffectModels.parse_fixedeffect(df, formula)
68+
fes, ids, fekeys, formula = FixedEffectModels.parse_fixedeffect(df, formula)
6969
has_fes = !isempty(fes)
7070
has_fes_intercept = false
7171
## Compute factors, an array of AbtractFixedEffects

0 commit comments

Comments
 (0)