-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robitzsch
committed
Jun 27, 2020
1 parent
281d926
commit 9496f03
Showing
93 changed files
with
2,323 additions
and
2,085 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
Package: TAM | ||
Type: Package | ||
Title: Test Analysis Modules | ||
Version: 3.6-2 | ||
Date: 2020-05-06 12:34:35 | ||
Version: 3.6-8 | ||
Date: 2020-06-27 21:47:07 | ||
Author: | ||
Alexander Robitzsch [aut, cre], Thomas Kiefer [aut], Margaret Wu [aut] | ||
Alexander Robitzsch [aut,cre] (<https://orcid.org/0000-0002-8226-3132>), | ||
Thomas Kiefer [aut], | ||
Margaret Wu [aut] | ||
Maintainer: Alexander Robitzsch <[email protected]> | ||
Description: | ||
Includes marginal maximum likelihood estimation and joint maximum | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
## File Name: tam_mml_3pl_computeB.R | ||
## File Version: 0.07 | ||
## File Version: 0.11 | ||
|
||
|
||
# function for computation of item loadings | ||
tam_mml_3pl_computeB <- function( Edes, gammaslope, E ) | ||
tam_mml_3pl_computeB <- function( Edes, gammaslope, E, skip_B=FALSE, B=NULL ) | ||
{ | ||
B <- tam_rcpp_mml_3pl_compute_B( Edes=Edes, gammaslope=gammaslope, | ||
if (! skip_B){ | ||
B <- tam_rcpp_mml_3pl_compute_B( Edes=Edes, gammaslope=gammaslope, | ||
dimE=dim(E) )$B | ||
B <- array( B, dim(E)[1:3] ) | ||
B <- array( B, dim(E)[1:3] ) | ||
} | ||
return(B) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.