Skip to content

Commit cd858b0

Browse files
committed
rearrange news list
1 parent 3afff76 commit cd858b0

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

NEWS.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,23 @@
1313
support for the Luo (2001) family of generating models, among most other
1414
secondary functions
1515

16-
- Fixed `M2()` computations with large amounts of missing data, particularly
17-
prevalent with the C2 statistic (reported by Hynek Cigler)
18-
19-
- `summary()` now outputs delta-method SEs for standardized factor loadings.
16+
- `summary()` now automatically outputs delta-method SEs for
17+
standardized factor loadings.
2018
Only applied for non-EFA models that include an estimate of the ACOV
2119
(e.g., via `mirt(..., SE=TRUE)`)
2220

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

26-
- Exported `DeltaMethod()` function for numerical version of the delta method
24+
- Exported general-purpose `DeltaMethod()` function for numerical
25+
version of the delta method
26+
27+
- Fixed `M2()` computations with large amounts of missing data, particularly
28+
prevalent with the C2 statistic (reported by Hynek Cigler)
2729

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

3134
# Changes in mirt 1.43
3235

R/02a-general_methods.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ Deriv.mix <- function(x, estHess=FALSE){
152152
hess=matrix(0, length(x$par), length(x$par)))
153153
ret$grad[x$est] <- numerical_deriv(par=x$par[x$est], f=LL, x=x)
154154
if(estHess && any(x$est))
155-
ret$hess[x$est, x$est] <- numerical_deriv(par=x$par[x$est], f=LL, x=x, gradient=FALSE)
155+
ret$hess[x$est, x$est] <- numerical_deriv(par=x$par[x$est],
156+
f=LL, x=x, gradient=FALSE)
156157
ret
157158
}
158159

0 commit comments

Comments
 (0)