Skip to content

Commit

Permalink
3.7-3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrobitzsch committed Apr 30, 2021
1 parent 45253ef commit 62cbee2
Show file tree
Hide file tree
Showing 15 changed files with 33 additions and 25 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: TAM
Type: Package
Title: Test Analysis Modules
Version: 3.7-1
Date: 2021-04-22 22:17:23
Version: 3.7-3
Date: 2021-04-30 12:08:26
Author:
Alexander Robitzsch [aut,cre] (<https://orcid.org/0000-0002-8226-3132>),
Thomas Kiefer [aut],
Expand Down
2 changes: 1 addition & 1 deletion R/RcppExports.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: RcppExports.R
## File Version: 3.007001
## File Version: 3.007003
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

Expand Down
4 changes: 2 additions & 2 deletions R/tam.mml.2pl.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: tam.mml.2pl.R
## File Version: 9.585
## File Version: 9.586

tam.mml.2pl <- function( resp, Y=NULL, group=NULL, irtmodel="2PL",
formulaY=NULL, dataY=NULL,
Expand Down Expand Up @@ -445,7 +445,7 @@ tam.mml.2pl <- function( resp, Y=NULL, group=NULL, irtmodel="2PL",
#******

#*** include NAs in AXsi
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat)
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat, A=A, xsi=xsi)

#******
# generate input for fixed parameters
Expand Down
5 changes: 4 additions & 1 deletion R/tam.mml.3pl.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: tam.mml.3pl.R
## File Version: 9.877
## File Version: 9.878

tam.mml.3pl <- function( resp, Y=NULL, group=NULL,
formulaY=NULL, dataY=NULL,
Expand Down Expand Up @@ -718,6 +718,9 @@ tam.mml.3pl <- function( resp, Y=NULL, group=NULL,
se.xsi.min -> se.xsi
se.B.min -> se.B

#*** include NAs in AXsi
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat, A=A, xsi=xsi)

#**** standard errors AXsi
se.AXsi <- tam_mml_se_AXsi( AXsi=AXsi, A=A, se.xsi=se.xsi, maxK=maxK )

Expand Down
4 changes: 2 additions & 2 deletions R/tam.mml.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: tam.mml.R
## File Version: 9.802
## File Version: 9.803

tam.mml <- function( resp, Y=NULL, group=NULL, irtmodel="1PL",
formulaY=NULL, dataY=NULL,
Expand Down Expand Up @@ -400,7 +400,7 @@ tam.mml <- function( resp, Y=NULL, group=NULL, irtmodel="1PL",


#*** include NAs in AXsi
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat)
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat, A=A, xsi=xsi)

#--- generate input for fixed parameters
xsi.fixed.estimated <- tam_generate_xsi_fixed_estimated( xsi=xsi, A=A )
Expand Down
4 changes: 2 additions & 2 deletions R/tam.mml.mfr.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: tam.mml.mfr.R
## File Version: 9.942
## File Version: 9.943

tam.mml.mfr <- function( resp, Y=NULL, group=NULL, irtmodel="1PL",
formulaY=NULL, dataY=NULL, ndim=1, pid=NULL, xsi.fixed=NULL,
Expand Down Expand Up @@ -448,7 +448,7 @@ tam.mml.mfr <- function( resp, Y=NULL, group=NULL, irtmodel="1PL",
resp.ind <- gresp.noStep.ind

#*** include NAs in AXsi
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat)
AXsi <- tam_mml_include_NA_AXsi(AXsi=AXsi, maxcat=maxcat, A=A, xsi=xsi)

#****
# look for non-estimable xsi parameters
Expand Down
7 changes: 5 additions & 2 deletions R/tam_mml_include_NA_AXsi.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## File Name: tam_mml_include_NA_AXsi.R
## File Version: 0.02
## File Version: 0.04


tam_mml_include_NA_AXsi <- function(AXsi, maxcat=NULL)
tam_mml_include_NA_AXsi <- function(AXsi, maxcat=NULL, A=NULL, xsi=NULL)
{
if (!is.null(xsi)){
AXsi <- tam_AXsi_compute(A=A, xsi=xsi)
}
if (is.null(maxcat)){
maxcat <- rep( ncol(AXsi), nrow(AXsi) )
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The CRAN version can be installed from within R using:
utils::install.packages("TAM")
```

#### GitHub version `TAM` 3.7-1 (2021-04-22)
#### GitHub version `TAM` 3.7-3 (2021-04-30)

[![](https://img.shields.io/badge/github%20version-3.7--1-orange.svg)](https://github.com/alexanderrobitzsch/TAM)&#160;&#160;
[![](https://img.shields.io/badge/github%20version-3.7--3-orange.svg)](https://github.com/alexanderrobitzsch/TAM)&#160;&#160;

The version hosted [here](https://github.com/alexanderrobitzsch/TAM) is the development version of `TAM`.
The GitHub version can be installed using `devtools` as:
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pandoc: 1.13.1
pkgdown: 1.5.1
pkgdown_sha: ~
articles: []
last_built: 2021-04-22T20:31Z
last_built: 2021-04-30T10:24Z

6 changes: 4 additions & 2 deletions inst/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ http://www.edmeasurementsurveys.com/TAM/Tutorials/


-------------------------------------------------------------
VERSIONS TAM 3.7 | 2021-04-22 | Last: TAM 3.7-1
VERSIONS TAM 3.7 | 2021-04-30 | Last: TAM 3.7-3
-------------------------------------------------------------

xxx * ...
NOTE * changed computation of AXsi and xsi.item in outputs to
prevent numerical differences with xsi
(thanks to Rudolf Debelak)


DATA * included/modified datasets: ---
Expand Down
2 changes: 1 addition & 1 deletion src/RcppExports.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//// File Name: RcppExports.cpp
//// File Version: 3.007001
//// File Version: 3.007003
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

Expand Down
2 changes: 1 addition & 1 deletion src/init.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//// File Name: init.c
//// File Version: 3.007001
//// File Version: 3.007003
#include <R.h>
#include <Rinternals.h>
#include <stdlib.h> // for NULL
Expand Down

0 comments on commit 62cbee2

Please sign in to comment.