Skip to content

Commit

Permalink
rearrange news list
Browse files Browse the repository at this point in the history
  • Loading branch information
philchalmers committed Jan 28, 2025
1 parent 3afff76 commit cd858b0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
17 changes: 10 additions & 7 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,23 @@
support for the Luo (2001) family of generating models, among most other
secondary functions

- Fixed `M2()` computations with large amounts of missing data, particularly
prevalent with the C2 statistic (reported by Hynek Cigler)

- `summary()` now outputs delta-method SEs for standardized factor loadings.
- `summary()` now automatically outputs delta-method SEs for
standardized factor loadings.
Only applied for non-EFA models that include an estimate of the ACOV
(e.g., via `mirt(..., SE=TRUE)`)

- Standardized factor loadings for the multidimensional nominal response model
now report consistent values regardless of the category ordering

- Exported `DeltaMethod()` function for numerical version of the delta method
- Exported general-purpose `DeltaMethod()` function for numerical
version of the delta method

- Fixed `M2()` computations with large amounts of missing data, particularly
prevalent with the C2 statistic (reported by Hynek Cigler)

- `coef(..., IRTpars=TRUE)` reported constant SE term of 0.0 when converting Rasch
models as bk = -dk were not correctly tracked
- Fixed minor `coef(..., IRTpars=TRUE)` issue where output reported a
constant SE term of 0.0 when converting Rasch
models (bk = -dk were not correctly tracked)

# Changes in mirt 1.43

Expand Down
3 changes: 2 additions & 1 deletion R/02a-general_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ Deriv.mix <- function(x, estHess=FALSE){
hess=matrix(0, length(x$par), length(x$par)))
ret$grad[x$est] <- numerical_deriv(par=x$par[x$est], f=LL, x=x)
if(estHess && any(x$est))
ret$hess[x$est, x$est] <- numerical_deriv(par=x$par[x$est], f=LL, x=x, gradient=FALSE)
ret$hess[x$est, x$est] <- numerical_deriv(par=x$par[x$est],
f=LL, x=x, gradient=FALSE)
ret
}

Expand Down

0 comments on commit cd858b0

Please sign in to comment.