Skip to content

Commit 124e4b1

Browse files
4.2-99
1 parent 92c1ecd commit 124e4b1

File tree

15 files changed

+31
-25
lines changed

15 files changed

+31
-25
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: sirt
22
Type: Package
33
Title: Supplementary Item Response Theory Models
4-
Version: 4.2-97
5-
Date: 2024-11-28 16:55:42
4+
Version: 4.2-99
5+
Date: 2024-11-30 11:02:30
66
Author: Alexander Robitzsch [aut,cre] (<https://orcid.org/0000-0002-8226-3132>)
77
Maintainer: Alexander Robitzsch <robitzsch@ipn.uni-kiel.de>
88
Description:

R/RcppExports.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## File Name: RcppExports.R
2-
## File Version: 4.002097
2+
## File Version: 4.002099
33
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
44
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
55

R/locpolycor.R

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
## File Name: locpolycor.R
2-
## File Version: 0.257
2+
## File Version: 0.271
33

44

55
locpolycor <- function(y, data.mod, moderator.grid, h=1.1,
6-
model_thresh, model_polycor, kernel="gaussian",
6+
model_thresh, model_polycor, sampling_weights=NULL,
7+
kernel="gaussian",
78
eps=1e-10)
89
{
910
#- compute weights
10-
llw <- lsem_local_weights(data.mod=x, moderator.grid=moderator.grid, h=h,
11-
kernel=kernel)
11+
llw <- lsem_local_weights(data.mod=data.mod, moderator.grid=moderator.grid, h=h,
12+
kernel=kernel, sampling_weights=sampling_weights)
1213
weights_grid <- llw$weights
1314

1415
#- estimate thresholds

R/lsem_local_weights.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## File Name: lsem_local_weights.R
2-
## File Version: 0.219
2+
## File Version: 0.222
33

44
lsem_local_weights <- function(data.mod, moderator.grid, h,
55
sampling_weights=NULL, bw=NULL, kernel="gaussian",

R/mcmc.2pno_alg.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## File Name: mcmc.2pno_alg.R
2-
## File Version: 1.22
2+
## File Version: 1.241
33

44

55
######################
@@ -117,7 +117,8 @@
117117
w1 <- weights / sum(weights )
118118
m1 <- colMeans( theta.chain )
119119
v1 <- sum( m1^2 * w1 ) - ( sum( m1*w1 ) )^2
120-
wM <- matrix( w1, nrow=nrow(theta.chain), ncol=ncol(theta.chain), byrow=TRUE )
120+
wM <- matrix( w1, nrow=nrow(theta.chain), ncol=ncol(theta.chain),
121+
byrow=TRUE )
121122
h1 <- rowSums( wM * theta.chain^2 ) - ( rowSums( wM * theta.chain ) )^2
122123
h1 <- mean(h1)
123124
EAP.rel <- v1 / h1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ The CRAN version can be installed from within R using:
2222
utils::install.packages("sirt")
2323
```
2424

25-
#### GitHub version `sirt` 4.2-97 (2024-11-28)
25+
#### GitHub version `sirt` 4.2-99 (2024-11-30)
2626

27-
[![](https://img.shields.io/badge/github%20version-4.2--97-orange.svg)](https://github.com/alexanderrobitzsch/sirt)&#160;&#160;
27+
[![](https://img.shields.io/badge/github%20version-4.2--99-orange.svg)](https://github.com/alexanderrobitzsch/sirt)&#160;&#160;
2828

2929
The version hosted [here](https://github.com/alexanderrobitzsch/sirt) is the development version of `sirt`.
3030
The GitHub version can be installed using `devtools` as:

docs/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ pandoc: 3.1.1
22
pkgdown: 2.0.7
33
pkgdown_sha: ~
44
articles: {}
5-
last_built: 2024-11-28T16:18Z
5+
last_built: 2024-11-30T10:23Z
66

0 commit comments

Comments
 (0)