Title: | Test Theory Analysis and Biclustering |
---|---|
Description: | Implements comprehensive test data engineering methods as described in Shojima (2022, ISBN:978-9811699856). Provides statistical techniques for engineering and processing test data: Classical Test Theory (CTT) with reliability coefficients for continuous ability assessment; Item Response Theory (IRT) including Rasch, 2PL, and 3PL models with item/test information functions; Latent Class Analysis (LCA) for nominal clustering; Latent Rank Analysis (LRA) for ordinal clustering with automatic determination of cluster numbers; Biclustering methods including infinite relational models for simultaneous clustering of examinees and items without predefined cluster numbers; and Bayesian Network Models (BNM) for visualizing inter-item dependencies. Features local dependence analysis through LRA and biclustering, parameter estimation, dimensionality assessment, and network structure visualization for educational, psychological, and social science research. |
Authors: | Koji Kosugi [aut, cre] |
Maintainer: | Koji Kosugi <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.5.1 |
Built: | 2025-04-02 08:30:16 UTC |
Source: | https://github.com/kosugitti/exametrika |
This function computes Tau-Equivalent Measurement, also known as Cronbach's alpha coefficient, for a given data set.
AlphaCoefficient(x, na = NULL, Z = NULL, w = NULL)
AlphaCoefficient(x, na = NULL, Z = NULL, w = NULL)
x |
This should be a data matrix or a Covariance/Phi/Tetrachoric matrix. |
na |
This parameter identifies the numbers or characters that should be treated as missing values when 'x' is a data matrix. |
Z |
This parameter represents a missing indicator matrix. It is only needed if 'x' is a data matrix. |
w |
This parameter is an item weight vector. It is only required if 'x' is a data matrix. |
For a correlation/covariance matrix input, returns a single numeric value representing the alpha coefficient. For a data matrix input, returns a list with three components:
Alpha coefficient calculated from covariance matrix
Alpha coefficient calculated from phi coefficient matrix
Alpha coefficient calculated from tetrachoric correlation matrix
Cronbach, L. J. (1951). Coefficient alpha and the internal structure of a test. Psychometrika, 16,297–334.
This function returns the alpha coefficient when the specified item is excluded.
AlphaIfDel(x, delItem = NULL, na = NULL, Z = NULL, w = NULL)
AlphaIfDel(x, delItem = NULL, na = NULL, Z = NULL, w = NULL)
x |
This should be a data matrix or a Covariance/Phi/Tetrachoric matrix. |
delItem |
Specify the item to be deleted. If NULL, calculations are performed for all cases. |
na |
This parameter identifies the numbers or characters that should be treated as missing values when 'x' is a data matrix. |
Z |
This parameter represents a missing indicator matrix. It is only needed if 'x' is a data matrix. |
w |
This parameter is an item weight vector. It is only required if 'x' is a data matrix. |
Prior distribution function with guessing parameter
asymprior(c, alp, bet)
asymprior(c, alp, bet)
c |
guessing parameter |
alp |
prior to be set |
bet |
prior to be set |
Performs biclustering, ranklustering, or their confirmatory variants on binary response data. These methods simultaneously cluster both examinees and items into homogeneous groups (or ordered ranks for ranklustering). The analysis reveals latent structures and patterns in the data by creating a matrix with rows and columns arranged to highlight block structures.
Biclustering( U, ncls = 2, nfld = 2, Z = NULL, w = NULL, na = NULL, method = "B", conf = NULL, mic = FALSE, maxiter = 100, verbose = TRUE )
Biclustering( U, ncls = 2, nfld = 2, Z = NULL, w = NULL, na = NULL, method = "B", conf = NULL, mic = FALSE, maxiter = 100, verbose = TRUE )
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
ncls |
Number of latent classes/ranks to identify (between 2 and 20). |
nfld |
Number of latent fields (item clusters) to identify. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
na |
Values to be treated as missing values. |
method |
Analysis method to use (character string):
|
conf |
Confirmatory parameter for pre-specified field assignments. Can be either:
|
mic |
Logical; if TRUE, forces Field Reference Profiles to be monotonically increasing. Default is FALSE. |
maxiter |
Maximum number of EM algorithm iterations. Default is 100. |
verbose |
Logical; if TRUE, displays progress during estimation. Default is TRUE. |
Biclustering simultaneously clusters both rows (examinees) and columns (items) of a data matrix. Unlike traditional clustering that groups either rows or columns, biclustering identifies submatrices with similar patterns. Ranklustering is a variant that imposes an ordinal structure on the classes, making it suitable for proficiency scaling.
The algorithm uses an Expectation-Maximization approach to iteratively estimate:
Field membership of items (which items belong to which fields)
Class/rank membership of examinees (which examinees belong to which classes)
Field Reference Profiles (probability patterns for each field-class combination)
The confirmatory option allows for pre-specified field assignments, which is useful when there is prior knowledge about item groupings or for testing hypothesized structures.
An object of class "exametrika" and "Biclustering" containing:
Model type indicator (1 for biclustering, 2 for ranklustering)
Logical value indicating whether monotonicity constraint was applied
Number of items in the test
Number of examinees in the dataset
Number of latent classes/ranks specified
Number of latent fields specified
Number of EM iterations performed
Latent Field Distribution - counts of items assigned to each field
Latent Rank/Class Distribution - counts of examinees assigned to each class/rank
Field Reference Profile matrix - probability of correct response for each field-class combination
Field Reference Profile indices including location parameters, slope parameters, and monotonicity indices
Test Reference Profile - expected score for examinees in each class/rank
Class/Rank Membership Distribution - sum of membership probabilities across examinees
Matrix showing the probabilities of each item belonging to each field
Matrix showing the probabilities of each examinee belonging to each class/rank
Matrix of smoothed class membership probabilities after filtering
Vector of the most likely field assignments for each item
Vector of the most likely class/rank assignments for each examinee
Data frame containing membership probabilities and classification information for each examinee
Matrix showing field analysis results with item-level information
Model fit indices for evaluating the quality of the clustering solution
Logical flag indicating whether Strongly Ordinal Alignment Condition is satisfied
Logical flag indicating whether Weakly Ordinal Alignment Condition is satisfied
Shojima, K. (2012). Biclustering of binary data matrices using bilinear models. Behaviormetrika, 39(2), 161-178.
# Perform Biclustering with Binary method (B) # Analyze data with 5 fields and 6 classes result.Bi <- Biclustering(J35S515, nfld = 5, ncls = 6, method = "B") # Perform Biclustering with Rank method (R) # Store results for further analysis and visualization result.Rank <- Biclustering(J35S515, nfld = 5, ncls = 6, method = "R") # Display the Bicluster Reference Matrix (BRM) as a heatmap plot(result.Rank, type = "Array") # Plot Field Reference Profiles (FRP) in a 2x3 grid # Shows the probability patterns for each field plot(result.Rank, type = "FRP", nc = 2, nr = 3) # Plot Rank Membership Profiles (RMP) for students 1-9 in a 3x3 grid # Shows posterior probability distribution of rank membership plot(result.Rank, type = "RMP", students = 1:9, nc = 3, nr = 3) # Example of confirmatory analysis with pre-specified fields # Assign items 1-10 to field 1, 11-20 to field 2, etc. field_assignments <- c(rep(1, 10), rep(2, 10), rep(3, 15)) result.Conf <- Biclustering(J35S515, nfld = 3, ncls = 5, conf = field_assignments)
# Perform Biclustering with Binary method (B) # Analyze data with 5 fields and 6 classes result.Bi <- Biclustering(J35S515, nfld = 5, ncls = 6, method = "B") # Perform Biclustering with Rank method (R) # Store results for further analysis and visualization result.Rank <- Biclustering(J35S515, nfld = 5, ncls = 6, method = "R") # Display the Bicluster Reference Matrix (BRM) as a heatmap plot(result.Rank, type = "Array") # Plot Field Reference Profiles (FRP) in a 2x3 grid # Shows the probability patterns for each field plot(result.Rank, type = "FRP", nc = 2, nr = 3) # Plot Rank Membership Profiles (RMP) for students 1-9 in a 3x3 grid # Shows posterior probability distribution of rank membership plot(result.Rank, type = "RMP", students = 1:9, nc = 3, nr = 3) # Example of confirmatory analysis with pre-specified fields # Assign items 1-10 to field 1, 11-20 to field 2, etc. field_assignments <- c(rep(1, 10), rep(2, 10), rep(3, 15)) result.Conf <- Biclustering(J35S515, nfld = 3, ncls = 5, conf = field_assignments)
Bicluster Network Model: BINET is a model that combines the Bayesian network model and Biclustering. BINET is very similar to LDB and LDR. The most significant difference is that in LDB, the nodes represent the fields, whereas in BINET, they represent the class. BINET explores the local dependency structure among latent classes at each latent field, where each field is a locus.
BINET( U, Z = NULL, w = NULL, na = NULL, conf = NULL, ncls = NULL, nfld = NULL, g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
BINET( U, Z = NULL, w = NULL, na = NULL, conf = NULL, ncls = NULL, nfld = NULL, g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
conf |
For the confirmatory parameter, you can input either a vector with items and corresponding fields in sequence, or a field membership profile matrix. In the case of the former, the field membership profile matrix will be generated internally. When providing a membership profile matrix, it needs to be either matrix or data.frame. The number of fields(nfld) will be overwrite to the number of columns of this matrix. |
ncls |
number of classes |
nfld |
number of fields |
g_list |
A list compiling graph-type objects for each rank/class. |
adj_list |
A list compiling matrix-type adjacency matrices for each rank/class. |
adj_file |
A file detailing the relationships of the graph for each rank/class, listed in the order of starting point, ending point, and rank(class). |
verbose |
verbose output Flag. default is TRUE |
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
Optimal number of classes.
Optimal number of fields.
Correct Response Rate
Label of Items
Label of Fields
Integrated Adjacency matrix used to plot graph.
Integrated graph object used to plot graph.see also plot.exametrika
List of Adjacency matrix used in the model
A list of the estimated conditional probabilities.
It indicates which path was obtained from which parent node(class) to
which child node(class), held by parent
, child
, and field
. The item
Items contained in the field is in fld
. Named chap
includes the
conditional correct response answer rate of the child node, while pap
contains the pass rate of the parent node.
Response pattern by the students belonging to the parent
classes of Class c. A more comprehensible arrangement of params.
Latent Class Distribution. see also plot.exametrika
Latent Field Distribution. see also plot.exametrika
Class Membership Distribution.
Marginal bicluster reference matrix.
Index of FFP includes the item location parameters B and Beta, the slope parameters A and Alpha, and the monotonicity indices C and Gamma.
Test Reference Profile
A rearranged set of parameters for output. It includes the field the items contained within that field, and the conditional correct response rate of parent nodes(class) and child node(class).
Given vector which correspondence between items and the fields.
Rank Membership Profile matrix.The s-th row vector of ,
, is the
rank membership profile of Student s, namely the posterior probability distribution representing the student's
belonging to the respective latent classes.
The next class that easiest for students to move to, its membership probability, class-up odds, and the field required for more.
Multigroup as Null model.See also TestFit
Saturated Model as Null model.See also TestFit
# Example: Bicluster Network Model (BINET) # BINET combines Bayesian network model and Biclustering to explore # local dependency structure among latent classes at each field # Create field configuration vector based on field assignments conf <- c( 1, 5, 5, 5, 9, 9, 6, 6, 6, 6, 2, 7, 7, 11, 11, 7, 7, 12, 12, 12, 2, 2, 3, 3, 4, 4, 4, 8, 8, 12, 1, 1, 6, 10, 10 ) # Create edge data for network structure between classes edges_data <- data.frame( "From Class (Parent) >>>" = c( 1, 2, 3, 4, 5, 7, 2, 4, 6, 8, 10, 6, 6, 11, 8, 9, 12 ), ">>> To Class (Child)" = c( 2, 4, 5, 5, 6, 11, 3, 7, 9, 12, 12, 10, 8, 12, 12, 11, 13 ), "At Field (Locus)" = c( 1, 2, 2, 3, 4, 4, 5, 5, 5, 5, 5, 7, 8, 8, 9, 9, 12 ) ) # Save edge data to temporary CSV file tmp_file <- tempfile(fileext = ".csv") write.csv(edges_data, file = tmp_file, row.names = FALSE) # Fit Bicluster Network Model result.BINET <- BINET( J35S515, ncls = 13, # Maximum class number from edges (13) nfld = 12, # Maximum field number from conf (12) conf = conf, # Field configuration vector adj_file = tmp_file # Path to the CSV file ) # Clean up temporary file unlink(tmp_file) # Display model results print(result.BINET) # Visualize different aspects of the model plot(result.BINET, type = "Array") # Show bicluster structure plot(result.BINET, type = "TRP") # Test Response Profile plot(result.BINET, type = "LRD") # Latent Rank Distribution plot(result.BINET, type = "RMP", # Rank Membership Profiles students = 1:9, nc = 3, nr = 3 ) plot(result.BINET, type = "FRP", # Field Reference Profiles nc = 3, nr = 2 ) plot(result.BINET, type = "LDPSR", # Locally Dependent Passing Student Rates nc = 3, nr = 2 )
# Example: Bicluster Network Model (BINET) # BINET combines Bayesian network model and Biclustering to explore # local dependency structure among latent classes at each field # Create field configuration vector based on field assignments conf <- c( 1, 5, 5, 5, 9, 9, 6, 6, 6, 6, 2, 7, 7, 11, 11, 7, 7, 12, 12, 12, 2, 2, 3, 3, 4, 4, 4, 8, 8, 12, 1, 1, 6, 10, 10 ) # Create edge data for network structure between classes edges_data <- data.frame( "From Class (Parent) >>>" = c( 1, 2, 3, 4, 5, 7, 2, 4, 6, 8, 10, 6, 6, 11, 8, 9, 12 ), ">>> To Class (Child)" = c( 2, 4, 5, 5, 6, 11, 3, 7, 9, 12, 12, 10, 8, 12, 12, 11, 13 ), "At Field (Locus)" = c( 1, 2, 2, 3, 4, 4, 5, 5, 5, 5, 5, 7, 8, 8, 9, 9, 12 ) ) # Save edge data to temporary CSV file tmp_file <- tempfile(fileext = ".csv") write.csv(edges_data, file = tmp_file, row.names = FALSE) # Fit Bicluster Network Model result.BINET <- BINET( J35S515, ncls = 13, # Maximum class number from edges (13) nfld = 12, # Maximum field number from conf (12) conf = conf, # Field configuration vector adj_file = tmp_file # Path to the CSV file ) # Clean up temporary file unlink(tmp_file) # Display model results print(result.BINET) # Visualize different aspects of the model plot(result.BINET, type = "Array") # Show bicluster structure plot(result.BINET, type = "TRP") # Test Response Profile plot(result.BINET, type = "LRD") # Latent Rank Distribution plot(result.BINET, type = "RMP", # Rank Membership Profiles students = 1:9, nc = 3, nr = 3 ) plot(result.BINET, type = "FRP", # Field Reference Profiles nc = 3, nr = 2 ) plot(result.BINET, type = "LDPSR", # Locally Dependent Passing Student Rates nc = 3, nr = 2 )
A biserial correlation is a correlation between dichotomous-ordinal and continuous variables.
BiserialCorrelation(i, t)
BiserialCorrelation(i, t)
i |
i is a dichotomous-ordinal variable (0/1). x and y can also be the other way around. |
t |
t is a continuous variable. x and y can also be the other way around. |
The biserial correlation coefficient between the two variables.
Binary pattern maker
BitRespPtn(n)
BitRespPtn(n)
n |
decimal numbers |
if n <- 1, return 0,1 if n <- 2, return 00,01,10,11 and so on.
binary patterns
performs Bayesian Network Model with specified graph structure
BNM( U, Z = NULL, w = NULL, na = NULL, g = NULL, adj_file = NULL, adj_matrix = NULL )
BNM( U, Z = NULL, w = NULL, na = NULL, g = NULL, adj_file = NULL, adj_matrix = NULL )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
g |
Specify a graph object suitable for the igraph class. |
adj_file |
specify CSV file where the graph structure is specified. |
adj_matrix |
specify adjacency matrix. |
This function performs a Bayesian network analysis on the relationships between items. This corresponds to Chapter 8 of the text. It uses the igraph package for graph visualization and checking the adjacency matrix. You need to provide either a graph object or a CSV file where the graph structure is specified.
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
correct response ratio
Overall fit index for the test.See also TestFit
Adjacency matrix
\
Learned Parameters
Correct Response Rate tables
# Create a Directed Acyclic Graph (DAG) structure for item relationships # Each row represents a directed edge from one item to another DAG <- matrix( c( "Item01", "Item02", # Item01 influences Item02 "Item02", "Item03", # Item02 influences Item03 "Item02", "Item04", # Item02 influences Item04 "Item03", "Item05", # Item03 influences Item05 "Item04", "Item05" # Item04 influences Item05 ), ncol = 2, byrow = TRUE ) # Convert the DAG matrix to an igraph object for network analysis g <- igraph::graph_from_data_frame(DAG) g # Create adjacency matrix from the graph # Shows direct connections between items (1 for connection, 0 for no connection) adj_mat <- as.matrix(igraph::as_adjacency_matrix(g)) print(adj_mat) # Fit Bayesian Network Model using the specified adjacency matrix # Analyzes probabilistic relationships between items based on the graph structure result.BNM <- BNM(J5S10, adj_matrix = adj_mat) result.BNM
# Create a Directed Acyclic Graph (DAG) structure for item relationships # Each row represents a directed edge from one item to another DAG <- matrix( c( "Item01", "Item02", # Item01 influences Item02 "Item02", "Item03", # Item02 influences Item03 "Item02", "Item04", # Item02 influences Item04 "Item03", "Item05", # Item03 influences Item05 "Item04", "Item05" # Item04 influences Item05 ), ncol = 2, byrow = TRUE ) # Convert the DAG matrix to an igraph object for network analysis g <- igraph::graph_from_data_frame(DAG) g # Create adjacency matrix from the graph # Shows direct connections between items (1 for connection, 0 for no connection) adj_mat <- as.matrix(igraph::as_adjacency_matrix(g)) print(adj_mat) # Fit Bayesian Network Model using the specified adjacency matrix # Analyzes probabilistic relationships between items based on the graph structure result.BNM <- BNM(J5S10, adj_matrix = adj_mat) result.BNM
A general function that returns the model fit indices.
calcFitIndices(chi_A, chi_B, df_A, df_B, nobs)
calcFitIndices(chi_A, chi_B, df_A, df_B, nobs)
chi_A |
chi-squares for this model |
chi_B |
chi-squares for compared model |
df_A |
degrees of freedom for this model |
df_B |
degrees of freedom for compared model |
nobs |
number of observations for Information criteria |
Normed Fit Index. Lager values closer to 1.0 indicate a better fit.
Relative Fit Index. Lager values closer to 1.0 indicate a better fit.
Incremental Fit Index. Lager values closer to 1.0 indicate a better fit.
Tucker-Lewis Index. Lager values closer to 1.0 indicate a better fit.
Comparative Fit Index. Lager values closer to 1.0 indicate a better fit.
Root Mean Square Error of Approximation. Smaller values closer to 0.0 indicate a better fit.
Akaike Information Criterion. A lower value indicates a better fit.
Consistent AIC.A lower value indicates a better fit.
Bayesian Information Criterion. A lower value indicates a better fit.
The conditional correct response rate (CCRR) represents the ratio of the students who passed Item C (consequent item) to those who passed Item A (antecedent item). This function is applicable only to binary response data.
CCRR(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: CCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' CCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'nominal' CCRR(U, na = NULL, Z = NULL, w = NULL)
CCRR(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: CCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' CCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'nominal' CCRR(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of conditional correct response rates with exametrika class. Each element (i,j) represents the probability of correctly answering item j given that item i was answered correctly.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# example code # Calculate CCRR using sample dataset J5S10 CCRR(J5S10)
# example code # Calculate CCRR using sample dataset J5S10 CCRR(J5S10)
The correct response rate (CRR) is one of the most basic and important statistics for item analysis. This is an index of item difficulty and a measure of how many students out of those who tried an item correctly responded to it. This function is applicable only to binary response data.
The CRR for each item is calculated as:
where is the missing indicator and
is the response.
crr(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: crr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' crr(U, na = NULL, Z = NULL, w = NULL)
crr(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: crr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' crr(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of weighted correct response rates for each item. Values range from 0 to 1, where higher values indicate easier items (more students answered correctly).
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# Simple binary data U <- matrix(c(1, 0, 1, 1, 0, 1), ncol = 2) crr(U) # using sample datasaet crr(J15S500)
# Simple binary data U <- matrix(c(1, 0, 1, 1, 0, 1), ncol = 2) crr(U) # using sample datasaet crr(J15S500)
Calculate the Conditional Selection Rate (CSR) for polytomous data. CSR measures the proportion of respondents who selected a specific category in item K, given that they selected a particular category in item J.
CSR(U, na = NULL, Z = NULL, w = NULL)
CSR(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
The function returns a nested list structure CSR, where CSR[[j]][[k]]
contains
a matrix of conditional probabilities. In this matrix, the element at row l and
column m represents P(K=m|J=l), which is the probability of selecting category m
for item K, given that category l was selected for item J.
Mathematically, for each cell (l,m) in the CSR[[j]][[k]]
matrix:
CSR[[j]][[k]][l,m] = P(Item K = category m | Item J = category l)
This is calculated as the number of respondents who selected both category l for item J and category m for item K, divided by the total number of respondents who selected category l for item J.
A list of Joint Selection Rate matrices for each item pair.
# example code # Calculate CSR using sample dataset J5S1000 CSR(J5S1000) # Extract the conditional selection rates from item 1 to item 2 csr_1_2 <- CSR(J5S1000)[[1]][[2]] # This shows the probability of selecting each category in item 2 # given that a specific category was selected in item 1
# example code # Calculate CSR using sample dataset J5S1000 CSR(J5S1000) # Extract the conditional selection rates from item 1 to item 2 csr_1_2 <- CSR(J5S1000)[[1]][[2]] # This shows the probability of selecting each category in item 2 # given that a specific category was selected in item 1
This function calculates the overall alpha and omega coefficients for the given data matrix. It also computes the alpha coefficient for each item, assuming that item is excluded.
CTT(U, na = NULL, Z = NULL, w = NULL)
CTT(U, na = NULL, Z = NULL, w = NULL)
U |
U is a data matrix of the type matrix or data.frame. |
na |
na argument specifies the numbers or characters to be treated as missing values. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
Returns a list of class c("exametrika", "CTT") containing two data frames:
A data frame with overall reliability coefficients (Alpha and Omega) calculated using different correlation matrices (Covariance, Phi, and Tetrachoric)
A data frame showing alpha coefficients when each item is excluded, calculated using different correlation matrices
# using sample dataset CTT(J15S500)
# using sample dataset CTT(J15S500)
This function serves the role of formatting the data prior to the analysis.
dataFormat( data, na = NULL, id = 1, Z = NULL, w = NULL, response.type = NULL, CA = NULL )
dataFormat( data, na = NULL, id = 1, Z = NULL, w = NULL, response.type = NULL, CA = NULL )
data |
is a data matrix of the type matrix or data.frame. |
na |
na argument specifies the numbers or characters to be treated as missing values. |
id |
id indicates the column number containing the examinee ID. The default is 1. If no ID column is specified or if the specified column contains response data, sequential IDs ("Student1", "Student2", etc.) will be generated and all columns will be treated as response data. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
response.type |
Character string specifying the type of response data: "binary" for dichotomous data, "ordinal" for ordered polytomous data, "rated" for polytomous data with correct answers, "nominal" for unordered polytomous data. If NULL (default), the type is automatically detected. |
CA |
A numeric vector specifying the correct answers for rated polytomous data. Required when response.type is "rated". |
For binary response data. A matrix with rows representing the sample size and columns
representing the number of items, where elements are either 0 or 1. indicates
that student i correctly answered item j, while
means that student i answered
item j incorrectly.
For polytomous response data. A matrix with rows representing the sample size and columns representing the number of items, where elements are non-negative integers. When input data is in factor format, the factor levels are converted to consecutive integers starting from 1.
The ID label given by the designated column or function.
The item names given by the provided column names or function.
Missing indicator matrix. indicates that item j is presented to Student i,
while
indicates item j is NOT presented to Student i.
If the data contains NA values, -1 is assigned.
Item weight vector
Character string indicating the type of response data: "binary", "ordinal", "rated", or "nominal"
List containing the original factor labels when polytomous responses are provided as factors. NULL if no factor data is present.
Numeric vector containing the number of response categories for each item.
For rated polytomous data, a numeric vector of correct answers. NULL for other types.
The dimensionality is the number of components the test is measuring.
Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'rated' Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' Dimensionality(U, na = NULL, Z = NULL, w = NULL)
Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'rated' Dimensionality(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' Dimensionality(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
Returns a list of class c("exametrika", "Dimensionality") containing:
Sequence of component numbers
Eigenvalues of the tetrachoric correlation matrix
Percentage of variance explained by each component
Cumulative percentage of variance explained
Implements Samejima's (1969) Graded Response Model (GRM), which is an Item Response Theory model for ordered categorical response data. The model estimates discrimination parameters and category threshold parameters for each item. It is widely used in psychological measurement, educational assessment, and other fields that deal with multi-step rating scales.
GRM(U, na = NULL, Z = NULL, w = NULL, verbose = TRUE)
GRM(U, na = NULL, Z = NULL, w = NULL, verbose = TRUE)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class using the |
na |
Specifies numbers or characters to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. 1 indicates observed values, 0 indicates missing values. |
w |
Item weight vector |
verbose |
Logical; if TRUE, shows progress of iterations (default: TRUE) |
A list of class "exametrika" and "GRM" containing the following elements:
Length of the test (number of items)
Sample size (number of rows in the dataset)
Matrix containing the estimated item parameters
Ability parameters of examinees estimated by EAP method
Ability parameters of examinees estimated by MAP method
Posterior standard deviation of the ability parameters
Fit indices for each item. See also ItemFit
Overall fit indices for the test. See also TestFit
Samejima, F. (1969). Estimation of latent ability using a response pattern of graded scores. Psychometrika Monograph Supplement, 34(4, Pt. 2), 1-100.
# Apply GRM to example data result <- GRM(J5S1000) print(result) plot(result, type = "IRF") plot(result, type = "IIF") plot(result, type = "TIF")
# Apply GRM to example data result <- GRM(J5S1000) print(result) plot(result, type = "IRF") plot(result, type = "IIF") plot(result, type = "TIF")
Calculates the value of the Item Information Function for the Graded Response Model.
grm_iif(theta, a, b)
grm_iif(theta, a, b)
theta |
Latent trait value of the subject |
a |
Discrimination parameter of IRF |
b |
Vector of difficulty parameters (thresholds) of IRF |
Value of the Item Information Function
## Not run: # Example for an item with 3 categories a <- 1.5 b <- c(-1.0, 1.0) thetas <- seq(-3, 3, by = 0.1) info <- sapply(thetas, function(t) grm_iif(t, a, b)) plot(thetas, info, type = "l", xlab = "Theta", ylab = "Information") ## End(Not run)
## Not run: # Example for an item with 3 categories a <- 1.5 b <- c(-1.0, 1.0) thetas <- seq(-3, 3, by = 0.1) info <- sapply(thetas, function(t) grm_iif(t, a, b)) plot(thetas, info, type = "l", xlab = "Theta", ylab = "Information") ## End(Not run)
Calculates the probability of selecting each category given a latent trait value and item parameters.
grm_prob(theta, a, b)
grm_prob(theta, a, b)
theta |
Latent trait value of the subject |
a |
Discrimination parameter of IRF |
b |
Vector of difficulty parameters (thresholds) of IRF |
Vector of category selection probabilities
## Not run: # Example for an item with 3 categories a <- 1.5 b <- c(-1.0, 1.0) theta <- 0 grm_prob(theta, a, b) ## End(Not run)
## Not run: # Example for an item with 3 categories a <- 1.5 b <- c(-1.0, 1.0) theta <- 0 grm_prob(theta, a, b) ## End(Not run)
Item Information Function for 2PLM
IIF2PLM(a, b, theta)
IIF2PLM(a, b, theta)
a |
slope parameter |
b |
location parameter |
theta |
ability parameter |
Returns a numeric vector representing the item information at each ability
level theta. The information is calculated as:
Item Information Function for 3PLM
IIF3PLM(a, b, c, theta)
IIF3PLM(a, b, c, theta)
a |
slope parameter |
b |
location parameter |
c |
lower asymptote parameter |
theta |
ability parameter |
Returns a numeric vector representing the item information at each ability
level theta. The information is calculated as:
Calculates various relationship metrics between pairs of items in test data. This analysis helps identify item interdependencies, content overlaps, and potential local dependence. For binary data, metrics include joint response rates, conditional probabilities, and several correlation measures. For ordinal/rated data, appropriate correlation measures are calculated.
The following metrics are calculated for binary data:
JSS: Joint Sample Size - number of examinees responding to both items
JCRR: Joint Correct Response Rate - proportion of examinees answering both items correctly
CCRR: Conditional Correct Response Rate - probability of answering one item correctly given a correct response to another item
IL: Item Lift - ratio of joint correct response rate to the product of marginal rates
MI: Mutual Information - measure of mutual dependence between items
Phi: Phi Coefficient - correlation coefficient for binary variables
Tetrachoric: Tetrachoric Correlation - estimate of Pearson correlation for underlying continuous variables
For ordinal/rated data, the function calculates:
JSS: Joint Sample Size
JSR: Joint Selection Rate
CSR: Conditional Selection Rate
MI: Mutual Information
Polychoric: Polychoric Correlation - extension of tetrachoric correlation for ordinal data
InterItemAnalysis(U, na = NULL, Z = NULL, w = NULL)
InterItemAnalysis(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
This function automatically detects the data type and applies appropriate analysis methods:
For binary data: Calculates tetrachoric correlations and related statistics
For ordinal/rated data: Calculates polychoric correlations and related statistics
For nominal data: Returns an error (not supported)
Inter-item analysis is useful for:
Identifying groups of highly related items
Detecting local dependence between items
Evaluating test dimensionality
Informing item selection and test construction
For binary data, an object of class "exametrika" and "IIAnalysis" containing:
Joint Sample Size matrix - N(i,j) shows number of examinees who responded to both items i and j
Joint Correct Response Rate matrix - P(Xi=1, Xj=1) shows probability of correct responses to both items
Conditional Correct Response Rate matrix - P(Xi=1|Xj=1) shows probability of correct response to item i given correct response to item j
Item Lift matrix - P(Xi=1, Xj=1)/(P(Xi=1)*P(Xj=1)) measures association strength
Mutual Information matrix - measures information shared between items
Phi Coefficient matrix - correlation coefficient between binary variables
Tetrachoric Correlation matrix - correlation between underlying continuous variables
For ordinal/rated data, an object of class "exametrika" and "IIAnalysis.ordinal" containing:
Joint Sample Size matrix
Joint Selection Rate matrix - frequencies of joint category selections
Conditional Selection Rate matrix - probabilities of response categories conditional on other items
Mutual Information matrix
Polychoric Correlation matrix - correlations between underlying continuous variables
dataFormat
for data preparation, CTT
for
Classical Test Theory analysis
# Basic usage with binary data ii_analysis <- InterItemAnalysis(J15S500) # View joint sample sizes head(ii_analysis$JSS) # View tetrachoric correlations head(ii_analysis$Tetrachoric) # Find pairs of items with high mutual information (potential local dependence) high_MI <- which(ii_analysis$MI > 0.2 & upper.tri(ii_analysis$MI), arr.ind = TRUE) if (nrow(high_MI) > 0) { print("Item pairs with high mutual information:") print(high_MI) } # Example with ordinal data ordinal_analysis <- InterItemAnalysis(J15S3810) # View polychoric correlations for ordinal data head(ordinal_analysis$Polychoric)
# Basic usage with binary data ii_analysis <- InterItemAnalysis(J15S500) # View joint sample sizes head(ii_analysis$JSS) # View tetrachoric correlations head(ii_analysis$Tetrachoric) # Find pairs of items with high mutual information (potential local dependence) high_MI <- which(ii_analysis$MI > 0.2 & upper.tri(ii_analysis$MI), arr.ind = TRUE) if (nrow(high_MI) > 0) { print("Item pairs with high mutual information:") print(high_MI) } # Example with ordinal data ordinal_analysis <- InterItemAnalysis(J15S3810) # View polychoric correlations for ordinal data head(ordinal_analysis$Polychoric)
The purpose of this method is to find the optimal number of classes C, and optimal number of fields F. It can be found in a single run of the analysis, but it takes a long computation time when the sample size S is large. In addition, this method incorporates the Chinese restaurant process and Gibbs sampling. In detail, See Section 7.8 in Shojima(2022).
IRM( U, Z = NULL, w = NULL, na = NULL, gamma_c = 1, gamma_f = 1, max_iter = 100, stable_limit = 5, minSize = 20, EM_limit = 20, seed = 123, verbose = TRUE )
IRM( U, Z = NULL, w = NULL, na = NULL, gamma_c = 1, gamma_f = 1, max_iter = 100, stable_limit = 5, minSize = 20, EM_limit = 20, seed = 123, verbose = TRUE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
gamma_c |
|
gamma_f |
|
max_iter |
A maximum iteration number of IRM process. The default is 100. |
stable_limit |
The IRM process exits the loop when the FRM stabilizes and no longer changes significantly. This option sets the maximum number of stable iterations, with a default of 5. |
minSize |
A value used for readjusting the number of classes.If the size of each
class is less than |
EM_limit |
After IRM process, resizing the number of classes process will starts.
This process using EM algorithm, |
seed |
seed value for random numbers. |
verbose |
verbose output Flag. default is TRUE |
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
Optimal number of classes.
Optimal number of fields.
Bicluster Reference Matrix
Field Reference Profile
Index of FFP includes the item location parameters B and Beta, the slope parameters A and Alpha, and the monotonicity indices C and Gamma.
Test Reference Profile
Field Membership Profile
Rank Membership Profile matrix.The s-th row vector of ,
, is the
rank membership profile of Student s, namely the posterior probability distribution representing the student's
belonging to the respective latent classes. It also includes the rank with the maximum estimated membership probability,
as well as the rank-up odds and rank-down odds.
Latent Rank Distribution. see also plot.exametrika
Latent Field Distribution. see also plot.exametrika
Rank Membership Distribution.
Overall fit index for the test.See also TestFit
# Fit an Infinite Relational Model (IRM) to determine optimal number of classes and fields # gamma_c and gamma_f are concentration parameters for the Chinese Restaurant Process result.IRM <- IRM(J35S515, gamma_c = 1, gamma_f = 1, verbose = TRUE) # Display the Bicluster Reference Matrix (BRM) as a heatmap # Shows the discovered clustering structure of items and students plot(result.IRM, type = "Array") # Plot Field Reference Profiles (FRP) in a 3-column grid # Shows the probability patterns for each automatically determined field plot(result.IRM, type = "FRP", nc = 3) # Plot Test Reference Profile (TRP) # Shows the overall response pattern across all fields plot(result.IRM, type = "TRP")
# Fit an Infinite Relational Model (IRM) to determine optimal number of classes and fields # gamma_c and gamma_f are concentration parameters for the Chinese Restaurant Process result.IRM <- IRM(J35S515, gamma_c = 1, gamma_f = 1, verbose = TRUE) # Display the Bicluster Reference Matrix (BRM) as a heatmap # Shows the discovered clustering structure of items and students plot(result.IRM, type = "Array") # Plot Field Reference Profiles (FRP) in a 3-column grid # Shows the probability patterns for each automatically determined field plot(result.IRM, type = "FRP", nc = 3) # Plot Test Reference Profile (TRP) # Shows the overall response pattern across all fields plot(result.IRM, type = "TRP")
A function for estimating item parameters using the EM algorithm.
IRT(U, model = 2, na = NULL, Z = NULL, w = NULL, verbose = TRUE)
IRT(U, model = 2, na = NULL, Z = NULL, w = NULL, verbose = TRUE)
U |
U is either a data class of exametrika, or raw data. When raw data is given,
it is converted to the exametrika class with the |
model |
This argument takes the number of item parameters to be estimated in the logistic model. It is limited to values 2, 3, or 4. |
na |
na argument specifies the numbers or characters to be treated as missing values. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
verbose |
logical; if TRUE, shows progress of iterations (default: TRUE) |
Apply the 2, 3, and 4 parameter logistic models to estimate the item and subject populations. The 4PL model can be described as follows.
, and
are parameters related to item j, and are parameters that
adjust the logistic curve.
is called the slope parameter,
is the location,
is the lower asymptote,
and
is the upper asymptote parameter.
The model includes lower models, and among the 4PL models, the case where
is the 3PL model,
and among the 3PL models, the case where
is the 2PL model.
number of item parameters you set.
Length of the test. The number of items included in the test.
Sample size. The number of rows in the dataset.
Matrix containing the estimated item parameters
Q3-matrix developed by Yen(1984)
Posterior standard deviation of the item parameters
Estimated parameters of students ability
Fit index for each item.See also ItemFit
Overall fit index for the test.See also TestFit
Yen, W. M. (1984) Applied Psychological Measurement, 8, 125-145.
# Fit a 3-parameter IRT model to the sample dataset result.IRT <- IRT(J15S500, model = 3) # Display the first few rows of estimated student abilities head(result.IRT$ability) # Plot Item Response Function (IRF) for items 1-6 in a 2x3 grid plot(result.IRT, type = "IRF", items = 1:6, nc = 2, nr = 3) # Plot Item Information Function (IIF) for items 1-6 in a 2x3 grid plot(result.IRT, type = "IIF", items = 1:6, nc = 2, nr = 3) # Plot the Test Information Function (TIF) for all items plot(result.IRT, type = "TIF")
# Fit a 3-parameter IRT model to the sample dataset result.IRT <- IRT(J15S500, model = 3) # Display the first few rows of estimated student abilities head(result.IRT$ability) # Plot Item Response Function (IRF) for items 1-6 in a 2x3 grid plot(result.IRT, type = "IRF", items = 1:6, nc = 2, nr = 3) # Plot Item Information Function (IIF) for items 1-6 in a 2x3 grid plot(result.IRT, type = "IIF", items = 1:6, nc = 2, nr = 3) # Plot the Test Information Function (TIF) for all items plot(result.IRT, type = "TIF")
The Item-Total Biserial Correlation computes the biserial correlation between each item and the total score. This function is applicable only to binary response data.
This correlation provides a measure of item discrimination, indicating how well each item distinguishes between high and low performing examinees.
ITBiserial(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ITBiserial(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ITBiserial(U, na = NULL, Z = NULL, w = NULL)
ITBiserial(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ITBiserial(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ITBiserial(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of item-total biserial correlations. Values range from -1 to 1, where:
Values near 1: Strong positive discrimination
Values near 0: No discrimination
Negative values: Potential item problems
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
The biserial correlation is generally preferred over the point-biserial correlation when the dichotomization is artificial (i.e., when the underlying trait is continuous).
# using sample dataset ITBiserial(J15S500)
# using sample dataset ITBiserial(J15S500)
The item entropy is an indicator of the variability or randomness of the responses. This function is applicable only to binary response data.
The entropy value represents the uncertainty or information content of the response pattern for each item, measured in bits. Maximum entropy (1 bit) occurs when correct and incorrect responses are equally likely (p = 0.5).
ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemEntropy(U, na = NULL, Z = NULL, w = NULL)
ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemEntropy(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemEntropy(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
The item entropy is calculated as:
where is the correct response rate for item j.
The entropy value has the following properties:
Maximum value of 1 bit when p = 0.5 (most uncertainty)
Minimum value of 0 bits when p = 0 or 1 (no uncertainty)
Higher values indicate more balanced response patterns
Lower values indicate more predictable response patterns
A numeric vector of entropy values for each item, measured in bits. Values range from 0 to 1, where:
1: maximum uncertainty (p = 0.5)
0: complete certainty (p = 0 or 1)
Values near 1 indicate items with balanced response patterns
Values near 0 indicate items with extreme response patterns
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# using sample dataset ItemEntropy(J5S10)
# using sample dataset ItemEntropy(J5S10)
A general function that returns the model fit indices.
ItemFit(U, Z, ell_A, nparam)
ItemFit(U, Z, ell_A, nparam)
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
ell_A |
log likelihood of this model |
nparam |
number of parameters for this model |
log likelihood of analysis model
log likelihood of benchmark model
log likelihood of null model
Chi-Square statistics for analysis model
Chi-Square statistics for null model
degrees of freedom of analysis model
degrees of freedom of null model
Normed Fit Index. Lager values closer to 1.0 indicate a better fit.
Relative Fit Index. Lager values closer to 1.0 indicate a better fit.
Incremental Fit Index. Lager values closer to 1.0 indicate a better fit.
Tucker-Lewis Index. Lager values closer to 1.0 indicate a better fit.
Comparative Fit Index. Lager values closer to 1.0 indicate a better fit.
Root Mean Square Error of Approximation. Smaller values closer to 0.0 indicate a better fit.
Akaike Information Criterion. A lower value indicates a better fit.
Consistent AIC.A lower value indicates a better fit.
Bayesian Information Criterion. A lower value indicates a better fit.
Item Information Function for 4PLM
ItemInformationFunc(a = 1, b, c = 0, d = 1, theta)
ItemInformationFunc(a = 1, b, c = 0, d = 1, theta)
a |
slope parameter |
b |
location parameter |
c |
lower asymptote parameter |
d |
upper asymptote parameter |
theta |
ability parameter |
Returns a numeric vector representing the item information at each ability level theta. The information is calculated based on the first derivative of the log-likelihood of the 4PL model with respect to theta.
The lift is a commonly used index in a POS data analysis.
The item lift of Item k to Item j is defined as follow:
This function is applicable only to binary response data.
ItemLift(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemLift(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemLift(U, na = NULL, Z = NULL, w = NULL)
ItemLift(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemLift(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemLift(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of item lift values with exametrika class. Each element (j,k) represents the lift value of item k given item j, which indicates how much more likely item k is to be correct given that item j was answered correctly.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
Brin, S., Motwani, R., Ullman, J., & Tsur, S. (1997). Dynamic itemset counting and implication rules for market basket data. In Proceedings of ACM SIGMOD International Conference on Management of Data (pp. 255–264). https://dl.acm.org/doi/10.1145/253262.253325
# example code # Calculate ItemLift using sample dataset J5S10 ItemLift(J5S10)
# example code # Calculate ItemLift using sample dataset J5S10 ItemLift(J5S10)
Item Odds are defined as the ratio of Correct Response Rate to Incorrect Response Rate:
where is the correct response rate for item j.
This function is applicable only to binary response data.
The odds value represents how many times more likely a correct response is compared to an incorrect response. For example, an odds of 2 means students are twice as likely to answer correctly as incorrectly.
ItemOdds(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemOdds(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemOdds(U, na = NULL, Z = NULL, w = NULL)
ItemOdds(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemOdds(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemOdds(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of odds values for each item. Values range from 0 to infinity, where:
odds > 1: correct response more likely than incorrect
odds = 1: equally likely
odds < 1: incorrect response more likely than correct
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# using sample dataset ItemOdds(J5S10)
# using sample dataset ItemOdds(J5S10)
Calculates item-level statistics for non-binary test data, including response rates, basic descriptive statistics, and item-total correlations.
ItemReport(U, na = NULL, Z = NULL, w = NULL)
ItemReport(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item |
This function is intended for non-binary (ordinal or rated) response data. It provides detailed statistics for each item in the test, focusing on response patterns and the relationship between individual items and overall test performance. If binary data is provided, an error message will be displayed.
An object of class "exametrika" and "QitemStatistics" containing:
Labels identifying each item
Number of valid responses for each item
Proportion of valid responses for each item (range: 0-1)
Mean score of each item
Standard deviation of each item score
Item-total correlation coefficients - correlation between item scores and total test scores
Corrected item-total correlation coefficients - correlation between item scores and total test scores excluding the target item
# Generate item report for sample ordinal data item_stats <- ItemReport(J15S3810) # View first few rows of the item report head(item_stats) # Example with rated data including custom missing value indicator item_stats2 <- ItemReport(J35S5000, na = -99)
# Generate item report for sample ordinal data item_stats <- ItemReport(J15S3810) # View first few rows of the item report head(item_stats) # Example with rated data including custom missing value indicator item_stats2 <- ItemReport(J35S5000, na = -99)
This function calculates statistics for each item, with different metrics available depending on the data type (binary, ordinal, or rated).
ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemStatistics(U, na = NULL, Z = NULL, w = NULL)
ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemStatistics(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
For binary data:
Label identifying each item
Number of Respondents for each item
Correct Response Rate denoted as $p_j$.
Item Odds is the ratio of the correct response rate to the incorrect response rate.
Defined as
Item Threshold is a measure of difficulty based on a standard normal distribution.
Item Entropy is an indicator of the variability or randomness of the responses.
Defined as
Item-total Correlation is a Pearson's correlation of an item with the Number-Right score.
For ordinal polytomous data:
Label identifying each item
Number of Respondents for each item
Matrix of threshold values for each item's category boundaries, based on a standard normal distribution. For an item with K categories, there are K-1 thresholds.
Item Entropy calculated using the category probabilities. Unlike binary data,
this is calculated using the formula ,
where
is the number of categories for item j.
Item-total Correlation calculated using polyserial correlation, which accounts for the ordinal nature of the item responses and the continuous total score.
For rated data, the function processes the data as binary, with each response being compared to the correct answer to determine correctness.
# using sample dataset(binary) ItemStatistics(J15S500)
# using sample dataset(binary) ItemStatistics(J15S500)
Item threshold is a measure of difficulty based on a standard normal distribution. This function is applicable only to binary response data.
The threshold is calculated as:
where is the inverse standard normal distribution function
and
is the correct response rate for item j.
Higher threshold values indicate more difficult items, as they represent the point on the standard normal scale above which examinees tend to answer incorrectly.
ItemThreshold(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemThreshold(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemThreshold(U, na = NULL, Z = NULL, w = NULL)
ItemThreshold(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemThreshold(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemThreshold(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of threshold values for each item on the standard normal scale. Typical values range from about -3 to 3, where:
Positive values indicate difficult items
Zero indicates items of medium difficulty (50% correct)
Negative values indicate easy items
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# using sample dataset ItemThreshold(J5S10)
# using sample dataset ItemThreshold(J5S10)
Item-Total correlation (ITC) is a Pearson's correlation of an item with the Number-Right Score (NRS) or total score. This function is applicable only to binary response data.
The ITC is a measure of item discrimination, indicating how well an item distinguishes between high and low performing examinees.
ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL)
ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' ItemTotalCorr(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
The correlation is calculated between:
Each item's responses (0 or 1)
The total test score (sum of correct responses)
Higher positive correlations indicate items that better discriminate between high and low ability examinees.
A numeric vector of item-total correlations. Values typically range from -1 to 1, where:
Values near 1: Strong positive discrimination
Values near 0: No discrimination
Negative values: Potential item problems (lower ability students performing better than higher ability students)
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
Values below 0.2 might indicate problematic items that should be reviewed. Values above 0.3 are generally considered acceptable.
# using sample dataset ItemTotalCorr(J15S500)
# using sample dataset ItemTotalCorr(J15S500)
A binary response dataset for test analysis
J12S5000
J12S5000
An exametrika class object with 5000 students and 12 items containing binary (0/1) responses
http://sh0j1ma.stars.ne.jp/exmk/
A ordinal response dataset for test analysis
J15S3810
J15S3810
An exametrika class object with 3810 students and 15 items containing nominal responses with 4 categories
A binary response dataset for test analysis
J15S500
J15S500
An exametrika class object with 500 students and 15 items containing binary (0/1) responses
http://sh0j1ma.stars.ne.jp/exmk/
A binary response dataset for test analysis
J20S400
J20S400
An exametrika class object with 400 students and 20 items containing binary (0/1) responses
http://sh0j1ma.stars.ne.jp/exmk/
A rated response dataset for test analysis
J35S5000
J35S5000
An exametrika class object with 5000 students and 35 items containing polytomous responses with correct answers
A binary response dataset for test analysis
J35S515
J35S515
An exametrika class object with 515 students and 35 items containing binary (0/1) responses
http://sh0j1ma.stars.ne.jp/exmk/
A simulated binary dataset for test analysis. This is a synthetic dataset generated using random number generation for demonstration and testing purposes.
J50S100
J50S100
An exametrika class object with 100 students and 50 items containing binary responses
A binary response dataset for test analysis
J5S10
J5S10
An exametrika class object with 5 students and 10 items containing binary (0/1) responses
http://sh0j1ma.stars.ne.jp/exmk/
A simulated ordinal dataset for test analysis. This is a synthetic dataset generated using random number generation for demonstration and testing purposes.
J5S1000
J5S1000
An exametrika class object with 1000 students and 5 items containing ordinal responses
The joint correct response rate (JCRR) is the rate of students who passed both items. This function is applicable only to binary response data. For non-binary data, it will automatically redirect to the JSR function with an appropriate message.
JCRR(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: JCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' JCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'nominal' JCRR(U, na = NULL, Z = NULL, w = NULL)
JCRR(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: JCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' JCRR(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'nominal' JCRR(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of joint correct response rates with exametrika class. Each element (i,j) represents the proportion of students who correctly answered both items i and j.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# example code # Calculate JCRR using sample dataset J5S10 JCRR(J5S10)
# example code # Calculate JCRR using sample dataset J5S10 JCRR(J5S10)
The joint sample size is a matrix whose elements are the number of individuals who responded to each pair of items.
JointSampleSize(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: JointSampleSize(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' JointSampleSize(U, na = NULL, Z = NULL, w = NULL)
JointSampleSize(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: JointSampleSize(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' JointSampleSize(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
Returns a matrix of class c("exametrika", "matrix") where each element (i,j) represents the number of students who responded to both item i and item j. The diagonal elements represent the total number of responses for each item.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
Calculate the Joint Selection Rate (JSR) for polytomous data. JSR measures the proportion of respondents who selected specific category combinations between pairs of items. For each pair of items (j,k), it returns a contingency table showing the joint probability of selecting each category combination.
JSR(U, na = NULL, Z = NULL, w = NULL)
JSR(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A list of Joint Selection Rate matrices for each item pair.
# example code # Calculate JCRR using sample dataset J5S1000 JSR(J5S1000)
# example code # Calculate JCRR using sample dataset J5S1000 JSR(J5S1000)
Performs Latent Class Analysis (LCA) on binary response data using the Expectation-Maximization (EM) algorithm. LCA identifies unobserved (latent) subgroups of examinees with similar response patterns, and estimates both the class characteristics and individual membership probabilities.
LCA(U, ncls = 2, na = NULL, Z = NULL, w = NULL, maxiter = 100)
LCA(U, ncls = 2, na = NULL, Z = NULL, w = NULL, maxiter = 100)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
ncls |
Number of latent classes to identify (between 2 and 20). Default is 2. |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
maxiter |
Maximum number of EM algorithm iterations. Default is 100. |
Latent Class Analysis is a statistical method for identifying unobserved subgroups within a population based on observed response patterns. It assumes that examinees belong to one of several distinct latent classes, and that the probability of a correct response to each item depends on class membership.
The algorithm proceeds by:
Initializing class reference probabilities
Computing posterior class membership probabilities for each examinee (E-step)
Re-estimating class reference probabilities based on these memberships (M-step)
Iterating until convergence or reaching the maximum number of iterations
Unlike Item Response Theory (IRT), LCA treats latent variables as categorical rather than continuous, identifying distinct profiles rather than positions on a continuum.
An object of class "exametrika" and "LCA" containing:
Length of the test (number of items).
Sample size (number of rows in the dataset).
Number of latent classes specified.
Number of EM algorithm iterations performed.
Test Reference Profile vector showing expected scores for each latent class. Calculated as the column sum of the estimated class reference matrix.
Latent Class Distribution vector showing the number of examinees assigned to each latent class.
Class Membership Distribution vector showing the sum of membership probabilities for each latent class.
Class Membership Profile matrix showing the posterior probability of each examinee belonging to each latent class. The last column ("Estimate") indicates the most likely class assignment.
Item Reference Profile matrix where each row represents an item and each column represents a latent class. Values indicate the probability of a correct response for members of that class.
Fit indices for each item. See also ItemFit
.
Overall fit indices for the test. See also TestFit
.
Goodman, L. A. (1974). Exploratory latent structure analysis using both identifiable and unidentifiable models. Biometrika, 61(2), 215-231.
Lazarsfeld, P. F., & Henry, N. W. (1968). Latent structure analysis. Boston: Houghton Mifflin.
# Fit a Latent Class Analysis model with 5 classes to the sample dataset result.LCA <- LCA(J15S500, ncls = 5) # Display the first few rows of student class membership probabilities head(result.LCA$Students) # Plot Item Response Profiles (IRP) for items 1-6 in a 2x3 grid # Shows probability of correct response for each item across classes plot(result.LCA, type = "IRP", items = 1:6, nc = 2, nr = 3) # Plot Class Membership Probabilities (CMP) for students 1-9 in a 3x3 grid # Shows probability distribution of class membership for each student plot(result.LCA, type = "CMP", students = 1:9, nc = 3, nr = 3) # Plot Test Response Profile (TRP) showing expected scores for each class plot(result.LCA, type = "TRP") # Plot Latent Class Distribution (LCD) showing class sizes plot(result.LCA, type = "LCD") # Compare models with different numbers of classes # (In practice, you might try more class counts) lca2 <- LCA(J15S500, ncls = 2) lca3 <- LCA(J15S500, ncls = 3) lca4 <- LCA(J15S500, ncls = 4) lca5 <- LCA(J15S500, ncls = 5) # Compare BIC values to select optimal number of classes # (Lower BIC indicates better fit) data.frame( Classes = 2:5, BIC = c( lca2$TestFitIndices$BIC, lca3$TestFitIndices$BIC, lca4$TestFitIndices$BIC, lca5$TestFitIndices$BIC ) )
# Fit a Latent Class Analysis model with 5 classes to the sample dataset result.LCA <- LCA(J15S500, ncls = 5) # Display the first few rows of student class membership probabilities head(result.LCA$Students) # Plot Item Response Profiles (IRP) for items 1-6 in a 2x3 grid # Shows probability of correct response for each item across classes plot(result.LCA, type = "IRP", items = 1:6, nc = 2, nr = 3) # Plot Class Membership Probabilities (CMP) for students 1-9 in a 3x3 grid # Shows probability distribution of class membership for each student plot(result.LCA, type = "CMP", students = 1:9, nc = 3, nr = 3) # Plot Test Response Profile (TRP) showing expected scores for each class plot(result.LCA, type = "TRP") # Plot Latent Class Distribution (LCD) showing class sizes plot(result.LCA, type = "LCD") # Compare models with different numbers of classes # (In practice, you might try more class counts) lca2 <- LCA(J15S500, ncls = 2) lca3 <- LCA(J15S500, ncls = 3) lca4 <- LCA(J15S500, ncls = 4) lca5 <- LCA(J15S500, ncls = 5) # Compare BIC values to select optimal number of classes # (Lower BIC indicates better fit) data.frame( Classes = 2:5, BIC = c( lca2$TestFitIndices$BIC, lca3$TestFitIndices$BIC, lca4$TestFitIndices$BIC, lca5$TestFitIndices$BIC ) )
A function that extracts only the estimation of graph parameters after the rank estimation is completed.
LD_param_est(tmp, adj_list, classRefMat, ncls, smoothpost)
LD_param_est(tmp, adj_list, classRefMat, ncls, smoothpost)
tmp |
tmp |
adj_list |
adj_list |
classRefMat |
values returned from emclus |
ncls |
ncls |
smoothpost |
smoothpost |
Latent dependence Biclustering, which incorporates biclustering and a Bayesian network model.
LDB( U, Z = NULL, w = NULL, na = NULL, ncls = 2, method = "R", conf = NULL, g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
LDB( U, Z = NULL, w = NULL, na = NULL, ncls = 2, method = "R", conf = NULL, g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
ncls |
number of latent class(rank). The default is 2. |
method |
specify the model to analyze the data.Local dependence latent class model is set to "C", latent rank model is set "R". The default is "R". |
conf |
For the confirmatory parameter, you can input either a vector with items and corresponding fields in sequence, or a field membership profile matrix. In the case of the former, the field membership profile matrix will be generated internally. When providing a membership profile matrix, it needs to be either matrix or data.frame. The number of fields(nfld) will be overwrite to the number of columns of this matrix. |
g_list |
A list compiling graph-type objects for each rank/class. |
adj_list |
A list compiling matrix-type adjacency matrices for each rank/class. |
adj_file |
A file detailing the relationships of the graph for each rank/class, listed in the order of starting point, ending point, and rank(class). |
verbose |
verbose output Flag. default is TRUE |
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
Optimal number of classes.
Optimal number of fields.
Correct Response Rate
Label of Items
Label of Fields
List of Adjacency matrix used in the model
List of graph object used in the model
List of Estimated Parameters. This object is three-dimensional PIRP array, where each dimension represents the number of rank,number of field, and Dmax. Dmax denotes the maximum number of correct response patterns for each field.
Latent Field Distribution. see also plot.exametrika
Latent Rank Distribution. see also plot.exametrika
Marginal Field Reference Matrix
Index of FFP includes the item location parameters B and Beta, the slope parameters A and Alpha, and the monotonicity indices C and Gamma.
This table is a rearrangement of IRP into a data.frame format for output, consisting of combinations of rank ,field and PIRP.
Test Reference Profile
Rank Membership Distribution.
Given vector which correspondence between items and the fields.
An index indicating which class a student belongs to, estimated by confirmatory Ranklustering.
Rank Membership Profile matrix.The s-th row vector of ,
, is the
rank membership profile of Student s, namely the posterior probability distribution representing the student's
belonging to the respective latent classes. It also includes the rank with the maximum estimated membership probability,
as well as the rank-up odds and rank-down odds.
Overall fit index for the test.See also TestFit
# Example: Latent Dirichlet Bayesian Network model # Create field configuration vector based on field assignments conf <- c( 1, 6, 6, 8, 9, 9, 4, 7, 7, 7, 5, 8, 9, 10, 10, 9, 9, 10, 10, 10, 2, 2, 3, 3, 5, 5, 6, 9, 9, 10, 1, 1, 7, 9, 10 ) # Create edge data for the network structure between fields edges_data <- data.frame( "From Field (Parent) >>>" = c( 6, 4, 5, 1, 1, 4, # Class/Rank 2 3, 4, 6, 2, 4, 4, # Class/Rank 3 3, 6, 4, 1, # Class/Rank 4 7, 9, 6, 7 # Class/Rank 5 ), ">>> To Field (Child)" = c( 8, 7, 8, 7, 2, 5, # Class/Rank 2 5, 8, 8, 4, 6, 7, # Class/Rank 3 5, 8, 5, 8, # Class/Rank 4 10, 10, 8, 9 # Class/Rank 5 ), "At Class/Rank (Locus)" = c( 2, 2, 2, 2, 2, 2, # Class/Rank 2 3, 3, 3, 3, 3, 3, # Class/Rank 3 4, 4, 4, 4, # Class/Rank 4 5, 5, 5, 5 # Class/Rank 5 ) ) # Save edge data to temporary CSV file tmp_file <- tempfile(fileext = ".csv") write.csv(edges_data, file = tmp_file, row.names = FALSE) # Fit Latent Dirichlet Bayesian Network model result.LDB <- LDB( U = J35S515, ncls = 5, # Number of latent classes conf = conf, # Field configuration vector adj_file = tmp_file # Path to the CSV file ) # Clean up temporary file unlink(tmp_file) # Display model results print(result.LDB) # Visualize different aspects of the model plot(result.LDB, type = "Array") # Show bicluster structure plot(result.LDB, type = "TRP") # Test Response Profile plot(result.LDB, type = "LRD") # Latent Rank Distribution plot(result.LDB, type = "RMP", # Rank Membership Profiles students = 1:9, nc = 3, nr = 3 ) plot(result.LDB, type = "FRP", # Field Reference Profiles nc = 3, nr = 2 ) # Field PIRP Profile showing correct answer counts for each rank and field plot(result.LDB, type = "FieldPIRP")
# Example: Latent Dirichlet Bayesian Network model # Create field configuration vector based on field assignments conf <- c( 1, 6, 6, 8, 9, 9, 4, 7, 7, 7, 5, 8, 9, 10, 10, 9, 9, 10, 10, 10, 2, 2, 3, 3, 5, 5, 6, 9, 9, 10, 1, 1, 7, 9, 10 ) # Create edge data for the network structure between fields edges_data <- data.frame( "From Field (Parent) >>>" = c( 6, 4, 5, 1, 1, 4, # Class/Rank 2 3, 4, 6, 2, 4, 4, # Class/Rank 3 3, 6, 4, 1, # Class/Rank 4 7, 9, 6, 7 # Class/Rank 5 ), ">>> To Field (Child)" = c( 8, 7, 8, 7, 2, 5, # Class/Rank 2 5, 8, 8, 4, 6, 7, # Class/Rank 3 5, 8, 5, 8, # Class/Rank 4 10, 10, 8, 9 # Class/Rank 5 ), "At Class/Rank (Locus)" = c( 2, 2, 2, 2, 2, 2, # Class/Rank 2 3, 3, 3, 3, 3, 3, # Class/Rank 3 4, 4, 4, 4, # Class/Rank 4 5, 5, 5, 5 # Class/Rank 5 ) ) # Save edge data to temporary CSV file tmp_file <- tempfile(fileext = ".csv") write.csv(edges_data, file = tmp_file, row.names = FALSE) # Fit Latent Dirichlet Bayesian Network model result.LDB <- LDB( U = J35S515, ncls = 5, # Number of latent classes conf = conf, # Field configuration vector adj_file = tmp_file # Path to the CSV file ) # Clean up temporary file unlink(tmp_file) # Display model results print(result.LDB) # Visualize different aspects of the model plot(result.LDB, type = "Array") # Show bicluster structure plot(result.LDB, type = "TRP") # Test Response Profile plot(result.LDB, type = "LRD") # Latent Rank Distribution plot(result.LDB, type = "RMP", # Rank Membership Profiles students = 1:9, nc = 3, nr = 3 ) plot(result.LDB, type = "FRP", # Field Reference Profiles nc = 3, nr = 2 ) # Field PIRP Profile showing correct answer counts for each rank and field plot(result.LDB, type = "FieldPIRP")
performs local dependence latent lank analysis(LD_LRA) by Shojima(2011)
LDLRA( U, Z = NULL, w = NULL, na = NULL, ncls = 2, method = "R", g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
LDLRA( U, Z = NULL, w = NULL, na = NULL, ncls = 2, method = "R", g_list = NULL, adj_list = NULL, adj_file = NULL, verbose = FALSE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
ncls |
number of latent class(rank). The default is 2. |
method |
specify the model to analyze the data.Local dependence latent class model is set to "C", latent rank model is set "R". The default is "R". |
g_list |
A list compiling graph-type objects for each rank/class. |
adj_list |
A list compiling matrix-type adjacency matrices for each rank/class. |
adj_file |
A file detailing the relationships of the graph for each rank/class, listed in the order of starting point, ending point, and rank(class). |
verbose |
verbose output Flag. default is TRUE |
This function is intended to perform LD-LRA. LD-LRA is an analysis that combines LRA and BNM, and it is used to analyze the network structure among items in the latent rank. In this function, structural learning is not performed, so you need to provide item graphs for each rank as separate files. The file format for this is plain text CSV that includes edges (From, To) and rank numbers.
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
correct response ratio
adjacency matrix list
graph list
Learned Parameters.A three-dimensional array of patterns where item x rank x pattern.
Marginal Item Reference Matrix
IRP Indices which include Alpha, Beta, Gamma.
Test Reference Profile matrix.
latent Rank/Class Distribution
Rank/Class Membership Distribution
Overall fit index for the test.See also TestFit
Estimated parameters tables.
Correct Response Rate tables
Student information. It includes estimated class membership, probability of class membership, RUO, and RDO.
# Create sample DAG structure with different rank levels # Format: From, To, Rank DAG_dat <- matrix(c( "From", "To", "Rank", "Item01", "Item02", "1", # Simple structure for Rank 1 "Item01", "Item02", "2", # More complex structure for Rank 2 "Item02", "Item03", "2", "Item01", "Item02", "3", # Additional connections for Rank 3 "Item02", "Item03", "3", "Item03", "Item04", "3" ), ncol = 3, byrow = TRUE) # Method 1: Directly use graph and adjacency lists g_list <- list() adj_list <- list() for (i in 1:3) { adj_R <- DAG_dat[DAG_dat[, 3] == as.character(i), 1:2, drop = FALSE] g_tmp <- igraph::graph_from_data_frame( d = data.frame( From = adj_R[, 1], To = adj_R[, 2] ), directed = TRUE ) adj_tmp <- igraph::as_adjacency_matrix(g_tmp) g_list[[i]] <- g_tmp adj_list[[i]] <- adj_tmp } # Fit Local Dependence Latent Rank Analysis result.LDLRA1 <- LDLRA(J12S5000, ncls = 3, g_list = g_list, adj_list = adj_list ) # Plot Item Reference Profiles (IRP) in a 4x3 grid # Shows the probability patterns of correct responses for each item across ranks plot(result.LDLRA1, type = "IRP", nc = 4, nr = 3) # Plot Test Reference Profile (TRP) # Displays the overall pattern of correct response probabilities across ranks plot(result.LDLRA1, type = "TRP") # Plot Latent Rank Distribution (LRD) # Shows the distribution of students across different ranks plot(result.LDLRA1, type = "LRD")
# Create sample DAG structure with different rank levels # Format: From, To, Rank DAG_dat <- matrix(c( "From", "To", "Rank", "Item01", "Item02", "1", # Simple structure for Rank 1 "Item01", "Item02", "2", # More complex structure for Rank 2 "Item02", "Item03", "2", "Item01", "Item02", "3", # Additional connections for Rank 3 "Item02", "Item03", "3", "Item03", "Item04", "3" ), ncol = 3, byrow = TRUE) # Method 1: Directly use graph and adjacency lists g_list <- list() adj_list <- list() for (i in 1:3) { adj_R <- DAG_dat[DAG_dat[, 3] == as.character(i), 1:2, drop = FALSE] g_tmp <- igraph::graph_from_data_frame( d = data.frame( From = adj_R[, 1], To = adj_R[, 2] ), directed = TRUE ) adj_tmp <- igraph::as_adjacency_matrix(g_tmp) g_list[[i]] <- g_tmp adj_list[[i]] <- adj_tmp } # Fit Local Dependence Latent Rank Analysis result.LDLRA1 <- LDLRA(J12S5000, ncls = 3, g_list = g_list, adj_list = adj_list ) # Plot Item Reference Profiles (IRP) in a 4x3 grid # Shows the probability patterns of correct responses for each item across ranks plot(result.LDLRA1, type = "IRP", nc = 4, nr = 3) # Plot Test Reference Profile (TRP) # Displays the overall pattern of correct response probabilities across ranks plot(result.LDLRA1, type = "TRP") # Plot Latent Rank Distribution (LRD) # Shows the distribution of students across different ranks plot(result.LDLRA1, type = "LRD")
The four-parameter logistic model is a model where one additional parameter d, called the upper asymptote parameter, is added to the 3PLM.
LogisticModel(a = 1, b, c = 0, d = 1, theta)
LogisticModel(a = 1, b, c = 0, d = 1, theta)
a |
slope parameter |
b |
location parameter |
c |
lower asymptote parameter |
d |
upper asymptote parameter |
theta |
ability parameter |
Returns a numeric vector of probabilities between c and d, representing
the probability of a correct response given the ability level theta. The probability
is calculated using the formula:
A function to reshape long data into a dataset suitable for exametrika.
longdataFormat( data, na = NULL, Sid = NULL, Qid = NULL, Resp = NULL, w = NULL, response.type = NULL, CA = NULL )
longdataFormat( data, na = NULL, Sid = NULL, Qid = NULL, Resp = NULL, w = NULL, response.type = NULL, CA = NULL )
data |
is a data matrix of the type matrix or data.frame. This must contain at least three columns to identify the student, the item, and the response. Additionally, it can include a column for the weight of the items. |
na |
na argument specifies the numbers or characters to be treated as missing values. |
Sid |
Specify the column number containing the student ID label vector. |
Qid |
Specify the column number containing the Question label vector. |
Resp |
Specify the column number containing the Response value vector. |
w |
Specify the column number containing the weight vector. |
response.type |
Character string specifying the type of response data: "binary" for dichotomous data, "ordinal" for ordered polytomous data, "rated" for polytomous data with correct answers, "nominal" for unordered polytomous data. If NULL (default), the type is automatically detected. |
CA |
A numeric vector specifying the correct answers for rated polytomous data. Required when response.type is "rated". |
For binary response data. A matrix with rows representing the sample size and columns
representing the number of items, where elements are either 0 or 1. indicates
that student i correctly answered item j, while
means that student i answered
item j incorrectly.
For polytomous response data. A matrix with rows representing the sample size and columns representing the number of items, where elements are non-negative integers. When input data is in factor format, the factor levels are converted to consecutive integers starting from 1.
The ID label given by the designated column or function.
The item names given by the provided column names or function.
Missing indicator matrix. indicates that item j is presented to Student i,
while
indicates item j is NOT presented to Student i.
Item weight vector
Character string indicating the type of response data: "binary", "ordinal", "rated", or "nominal"
List containing the original factor labels when polytomous responses are provided as factors. NULL if no factor data is present.
Numeric vector containing the number of response categories for each item.
For rated polytomous data, a numeric vector of correct answers. NULL for other types.
A general function for estimating Latent Rank Analysis across different response types. This function automatically dispatches to the appropriate method based on the response type:
For binary data (LRA.binary
): Analysis using either SOM or GTM method
For ordinal data (LRA.ordinal
): Analysis using the GTM method with category thresholds
For rated data (LRA.rated
): Analysis using the GTM method with rating categories
Latent Rank Analysis identifies underlying rank structures in test data and assigns examinees to these ranks based on their response patterns.
LRA(U, ...) ## Default S3 method: LRA(U, na = NULL, Z = Z, w = w, ...) ## S3 method for class 'binary' LRA( U, nrank = 2, method = "GTM", mic = FALSE, maxiter = 100, BIC.check = FALSE, seed = NULL, verbose = TRUE, ... ) ## S3 method for class 'ordinal' LRA( U, nrank = 2, mic = FALSE, maxiter = 100, trapezoidal = 0, eps = 1e-04, verbose = TRUE, ... ) ## S3 method for class 'rated' LRA( U, nrank = 2, mic = FALSE, maxiter = 100, trapezoidal = 0, eps = 1e-04, minFreqRatio = 0, verbose = TRUE, ... )
LRA(U, ...) ## Default S3 method: LRA(U, na = NULL, Z = Z, w = w, ...) ## S3 method for class 'binary' LRA( U, nrank = 2, method = "GTM", mic = FALSE, maxiter = 100, BIC.check = FALSE, seed = NULL, verbose = TRUE, ... ) ## S3 method for class 'ordinal' LRA( U, nrank = 2, mic = FALSE, maxiter = 100, trapezoidal = 0, eps = 1e-04, verbose = TRUE, ... ) ## S3 method for class 'rated' LRA( U, nrank = 2, mic = FALSE, maxiter = 100, trapezoidal = 0, eps = 1e-04, minFreqRatio = 0, verbose = TRUE, ... )
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
... |
Additional arguments passed to specific methods. |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. 1 indicates observed values, 0 indicates missing values. |
w |
Item weight vector. |
nrank |
Number of latent ranks to estimate. Must be between 2 and 20. |
method |
For binary data only. Either "SOM" (Self-Organizing Maps) or "GTM" (Gaussian Topographic Mapping). Default is "GTM". |
mic |
Logical; if TRUE, forces Item Reference Profiles to be monotonically increasing. Default is FALSE. |
maxiter |
Maximum number of iterations for estimation. Default is 100. |
BIC.check |
For binary data with SOM method only. If TRUE, convergence is checked using BIC values. Default is FALSE. |
seed |
For binary data with SOM method only. Random seed for reproducibility. |
verbose |
Logical; if TRUE, displays detailed progress during estimation. Default is TRUE. |
trapezoidal |
Specifies the height of both tails when using a trapezoidal prior distribution. Must be less than 1/nrank. The default value is 0, which results in a uniform prior distribution. |
eps |
Convergence threshold for parameter updates. Default is 1e-4. |
minFreqRatio |
Minimum frequency ratio for response categories (default = 0). Categories with occurrence rates below this threshold will be excluded from analysis. For example, if set to 0.1, response categories that appear in less than 10% of responses for an item will be omitted. |
A list of class "exametrika" and the specific subclass (e.g., "LRA", "LRAordinal", "LRArated") containing the following common elements:
Length of the test (number of items).
Sample size (number of rows in the dataset).
Number of latent ranks specified.
Number of EM algorithm iterations performed.
Test Reference Profile vector showing expected scores at each rank.
Latent Rank Distribution vector showing the number of examinees at each rank.
Rank Membership Distribution vector showing the sum of probabilities for each rank.
Rank Membership Profile matrix showing the posterior probabilities of examinees belonging to each rank, along with their estimated ranks and odds ratios.
Fit indices for each item. See also ItemFit
.
Overall fit indices for the test. See also TestFit
.
Each subclass returns additional specific elements, detailed in their respective documentation.
For binary data (LRA.binary
), the returned list additionally includes:
Item Reference Profile matrix showing the probability of correct response for each item across different ranks.
Item Response Profile indices including the location parameters B and Beta, slope parameters A and Alpha, and monotonicity indices C and Gamma.
For ordinal data (LRA.ordinal
), the returned list additionally includes:
Descriptive statistics of test performance, including sample size, test length, central tendency, variability, distribution characteristics, and reliability.
Basic statistics for each item including category proportions and item-total correlations.
Item Category Boundary Reference matrix showing cumulative probabilities for rank-category combinations.
Item Category Reference Profile matrix showing probability of response in each category by rank.
Spearman's correlation between test scores and estimated ranks.
Spearman's correlation between estimated ranks and quantile groups.
Contingency table of raw scores by estimated ranks.
Expected rank memberships for each raw score.
Cross-tabulation of rank frequencies and quantile groups.
Cross-tabulation of rank membership probabilities and quantile groups.
Response patterns across item categories and quantile groups.
For rated data (LRA.rated
), the returned list additionally includes:
Descriptive statistics of test performance, including sample size, test length, central tendency, variability, distribution characteristics, and reliability.
Basic statistics for each item including category proportions and item-total correlations.
Item Category Reference Profile matrix showing probability of response in each category by rank.
Spearman's correlation between test scores and estimated ranks.
Spearman's correlation between estimated ranks and quantile groups.
Contingency table of raw scores by estimated ranks.
Expected rank memberships for each raw score.
Cross-tabulation of rank frequencies and quantile groups.
Cross-tabulation of rank membership probabilities and quantile groups.
Reference values for each item across quantile groups.
Response patterns across item categories and quantile groups.
LRA.binary
analyzes dichotomous (0/1) response data using either Self-Organizing Maps (SOM)
or Gaussian Topographic Mapping (GTM).
LRA.ordinal
analyzes ordered categorical data with multiple thresholds,
such as Likert-scale responses or graded items.
LRA.rated
analyzes data with ratings assigned to each response, such as
partially-credited items or preference scales where response categories have different weights.
plot.exametrika
for visualizing LRA results.
# Binary data example # Fit a Latent Rank Analysis model with 6 ranks to binary data result.LRA <- LRA(J15S500, nrank = 6) # Display the first few rows of student rank membership profiles head(result.LRA$Students) # Plot Item Reference Profiles (IRP) for the first 6 items plot(result.LRA, type = "IRP", items = 1:6, nc = 2, nr = 3) # Plot Test Reference Profile (TRP) showing expected scores at each rank plot(result.LRA, type = "TRP") # Ordinal data example # Fit a Latent Rank Analysis model with 3 ranks to ordinal data result.LRAord <- LRA(J15S3810, nrank = 3, mic = TRUE) # Plot score distributions plot(result.LRAord, type = "ScoreFreq") plot(result.LRAord, type = "ScoreRank") # Plot category response patterns for items 1-6 plot(result.LRAord, type = "ICBR", items = 1:6, nc = 3, nr = 2) plot(result.LRAord, type = "ICRP", items = 1:6, nc = 3, nr = 2) # Rated data example # Fit a Latent Rank Analysis model with 10 ranks to rated data result.LRArated <- LRA(J35S5000, nrank = 10, mic = TRUE) # Plot score distributions plot(result.LRArated, type = "ScoreFreq") plot(result.LRArated, type = "ScoreRank") # Plot category response patterns for items 1-6 plot(result.LRArated, type = "ICRP", items = 1:6, nc = 3, nr = 2)
# Binary data example # Fit a Latent Rank Analysis model with 6 ranks to binary data result.LRA <- LRA(J15S500, nrank = 6) # Display the first few rows of student rank membership profiles head(result.LRA$Students) # Plot Item Reference Profiles (IRP) for the first 6 items plot(result.LRA, type = "IRP", items = 1:6, nc = 2, nr = 3) # Plot Test Reference Profile (TRP) showing expected scores at each rank plot(result.LRA, type = "TRP") # Ordinal data example # Fit a Latent Rank Analysis model with 3 ranks to ordinal data result.LRAord <- LRA(J15S3810, nrank = 3, mic = TRUE) # Plot score distributions plot(result.LRAord, type = "ScoreFreq") plot(result.LRAord, type = "ScoreRank") # Plot category response patterns for items 1-6 plot(result.LRAord, type = "ICBR", items = 1:6, nc = 3, nr = 2) plot(result.LRAord, type = "ICRP", items = 1:6, nc = 3, nr = 2) # Rated data example # Fit a Latent Rank Analysis model with 10 ranks to rated data result.LRArated <- LRA(J35S5000, nrank = 10, mic = TRUE) # Plot score distributions plot(result.LRArated, type = "ScoreFreq") plot(result.LRArated, type = "ScoreRank") # Plot category response patterns for items 1-6 plot(result.LRArated, type = "ICRP", items = 1:6, nc = 3, nr = 2)
Function to limit the number of parent nodes
maxParents_penalty(vec, testlength, maxParents)
maxParents_penalty(vec, testlength, maxParents)
vec |
gene Vector corresponding to the upper triangular of the adjacency matrix |
testlength |
test length. In this context it means a number of nodes. |
maxParents |
Upper limit of number of nodes. |
When generating an adjacency matrix using GA, the number of edges coming from a single node should be limited to 2 or 3. This is because if there are too many edges, it becomes difficult to interpret in practical applications. This function works to adjust the sampling of the randomly generated adjacency matrix so that the column sum of the upper triangular elements fits within the set limit.
Mutual Information is a measure that represents the degree of interdependence between two items. This function is applicable to both binary and polytomous response data. The measure is calculated using the joint probability distribution of responses between item pairs and their marginal probabilities.
MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## Default S3 method: MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## S3 method for class 'binary' MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## S3 method for class 'ordinal' MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2)
MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## Default S3 method: MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## S3 method for class 'binary' MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2) ## S3 method for class 'ordinal' MutualInformation(U, na = NULL, Z = NULL, w = NULL, base = 2)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
base |
The base for the logarithm. Default is 2. For polytomous data, you can use "V" to set the base to min(rows, columns), "e" for natural logarithm (base e), or any other number to use that specific base. |
For binary data, the following formula is used:
Where:
is the joint probability of incorrect responses to both items j and k
is the joint probability of incorrect response to item j and correct to item k
is the joint probability of correct response to item j and incorrect to item k
is the joint probability of correct responses to both items j and k
For polytomous data, the following formula is used:
The base of the logarithm can be the number of rows, number of columns, min(rows, columns), base-10 logarithm, natural logarithm (e), etc.
A matrix of mutual information values with exametrika class. Each element (i,j) represents the mutual information between items i and j, measured in bits. Higher values indicate stronger interdependence between items.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# example code # Calculate Mutual Information using sample dataset J15S500 MutualInformation(J15S500)
# example code # Calculate Mutual Information using sample dataset J15S500 MutualInformation(J15S500)
The Number-Right Score (NRS) function calculates the weighted sum of correct responses for each examinee. This function is applicable only to binary response data.
For each examinee, the score is computed as:
where:
is the missing response indicator (0/1)
is the response (0/1)
is the item weight
nrs(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: nrs(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' nrs(U, na = NULL, Z = NULL, w = NULL)
nrs(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: nrs(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' nrs(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector containing the Number-Right Score for each examinee. The score represents the weighted sum of correct answers, where:
Maximum score is the sum of all item weights
Minimum score is 0
Missing responses do not contribute to the score
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# using sample dataset nrs(J15S500)
# using sample dataset nrs(J15S500)
Log-likelihood function used in the Maximization Step (M-Step).
objective_function_IRT(lambda, model, qjtrue, qjfalse, quadrature)
objective_function_IRT(lambda, model, qjtrue, qjfalse, quadrature)
lambda |
item parameter vector |
model |
2,3,or 4 PL |
qjtrue |
correct resp pattern |
qjfalse |
incorrect resp pattern |
quadrature |
Pattern of a segmented normal distribution. |
This function computes Tau-Congeneric Measurement, also known as McDonald's tau coefficient, for a given data set.
OmegaCoefficient(x, na = NULL, Z = NULL, w = NULL)
OmegaCoefficient(x, na = NULL, Z = NULL, w = NULL)
x |
This should be a data matrix or a Covariance/Phi/Tetrachoric matrix. |
na |
This parameter identifies the numbers or characters that should be treated as missing values when 'x' is a data matrix. |
Z |
This parameter represents a missing indicator matrix. It is only needed if 'x' is a data matrix. |
w |
This parameter is an item weight vector. It is only required if 'x' is a data matrix. |
For a correlation/covariance matrix input, returns a single numeric value representing the omega coefficient. For a data matrix input, returns a list with three components:
Omega coefficient calculated from covariance matrix
Omega coefficient calculated from phi coefficient matrix
Omega coefficient calculated from tetrachoric correlation matrix
McDonald, R. P. (1999). Test theory: A unified treatment. Erlbaum.
The Passage Rate for each student is calculated as their Number-Right Score (NRS) divided by the number of items presented to them. This function is applicable only to binary response data.
The passage rate is calculated as:
where:
is the missing response indicator (0/1)
is the response (0/1)
is the item weight
passage(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: passage(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' passage(U, na = NULL, Z = NULL, w = NULL)
passage(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: passage(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' passage(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector containing the passage rate for each student. Values range from 0 to 1 (or maximum weight) where:
1: Perfect score on all attempted items
0: No correct answers
NA: No items attempted
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
The passage rate accounts for missing responses by only considering items that were actually presented to each student. This provides a fair comparison between students who attempted different numbers of items.
# using sample dataset passage(J15S500)
# using sample dataset passage(J15S500)
The percentile function calculates each student's relative standing in the group, expressed as a percentile rank (1-100). This function is applicable only to binary response data.
The percentile rank indicates the percentage of scores in the distribution that fall below a given score. For example, a percentile rank of 75 means the student performed better than 75% of the group.
percentile(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: percentile(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' percentile(U, na = NULL, Z = NULL, w = NULL)
percentile(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: percentile(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' percentile(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of percentile ranks (1-100) for each student, where:
100: Highest performing student(s)
50: Median performance
1: Lowest performing student(s)
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
Percentile ranks are calculated using the empirical cumulative distribution function of standardized scores. Tied scores receive the same percentile rank. The values are rounded up to the nearest integer to provide ranks from 1 to 100.
# using sample dataset percentile(J5S10)
# using sample dataset percentile(J5S10)
The phi coefficient is the Pearson's product moment correlation coefficient between two binary items. This function is applicable only to binary response data. The coefficient ranges from -1 to 1, where 1 indicates perfect positive correlation, -1 indicates perfect negative correlation, and 0 indicates no correlation.
PhiCoefficient(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: PhiCoefficient(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' PhiCoefficient(U, na = NULL, Z = NULL, w = NULL)
PhiCoefficient(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: PhiCoefficient(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' PhiCoefficient(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of phi coefficients with exametrika class. Each element (i,j) represents the phi coefficient between items i and j. The matrix is symmetric with ones on the diagonal.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# example code # Calculate Phi-Coefficient using sample dataset J15S500 PhiCoefficient(J15S500)
# example code # Calculate Phi-Coefficient using sample dataset J15S500 PhiCoefficient(J15S500)
Creates visualizations for objects with class "exametrika". The calculation results of the exametrika package have an exametrika class attribute, along with the specific analysis model class (IRT, GRM, LCA, LRA, Biclustering, IRM, LDLRA, LDB, BINET). Each model has its own compatible plot types, accessible by specifying the 'type' parameter.
## S3 method for class 'exametrika' plot( x, type = c("IRF", "TRF", "IIF", "TIF", "IIC", "ICC", "TIC", "IRP", "TRP", "LCD", "CMP", "FRP", "RMP", "LRD", "Array", "CRV", "RRV", "FieldPIRP", "LDPSR", "ScoreFreq", "ScoreRank", "ICRP", "ICBR"), items = NULL, students = NULL, nc = 1, nr = 1, overlay = FALSE, ... )
## S3 method for class 'exametrika' plot( x, type = c("IRF", "TRF", "IIF", "TIF", "IIC", "ICC", "TIC", "IRP", "TRP", "LCD", "CMP", "FRP", "RMP", "LRD", "Array", "CRV", "RRV", "FieldPIRP", "LDPSR", "ScoreFreq", "ScoreRank", "ICRP", "ICBR"), items = NULL, students = NULL, nc = 1, nr = 1, overlay = FALSE, ... )
x |
An object of class "exametrika" |
type |
Character string specifying the plot type. Available types vary by model:
|
items |
Numeric vector specifying which items to plot. If NULL, all items are included. When type is "IIF"/"IIC", specifying 0 will produce a TIF/TIC for the entire test. |
students |
Numeric vector specifying which students to plot. If NULL, all students are included. |
nc |
Integer specifying the number of columns for multiple plots. Default is 1. |
nr |
Integer specifying the number of rows for multiple plots. Default is 1. |
overlay |
Logical. If TRUE, elements such as IRFs will be overlaid on a single plot. Default is FALSE. |
... |
Additional arguments passed to plotting functions. |
Each model class supports specific plot types:
Supports "IRF"/"ICC", "TRF", "IIF"/"IIC", "TIF"/"TIC"
Supports "IRF"/"ICC", "IIF"/"IIC", "TIF"/"TIC"
Supports "IRP", "FRP", "TRP", "LCD", "CMP"
Supports "IRP", "FRP", "TRP", "LRD", "RMP"
Supports "ScoreFreq", "ScoreRank", "ICRP", "ICBR", "RMP"
Supports "ScoreFreq", "ScoreRank", "ICRP", "RMP"
Supports "FRP", "TRP", "LCD", "LRD", "CMP", "RMP", "CRV", "RRV", "Array"
Supports "FRP", "TRP", "Array"
Supports "IRP", "TRP", "LRD", "RMP"
Supports "FRP", "TRP", "LRD", "RMP", "Array", "FieldPIRP"
Supports "FRP", "TRP", "LRD", "RMP", "Array", "LDPSR"
Produces visualizations based on the model class and specified type:
IRF (Item Response Function), TRF (Test Response Function), IIF (Item Information Function), TIF (Test Information Function)
IRP (Item Reference Profile), TRP (Test Reference Profile), LCD/LRD (Latent Class/Rank Distribution), CMP/RMP (Class/Rank Membership Profile)
Array plots showing clustering patterns, FRP, TRP, etc.
Network and profile plots specific to each model
## Not run: # IRT model example irt_result <- exametrika::IRT(U) plot(irt_result, type = "IRF", items = 1:5) plot(irt_result, type = "TIF") # LCA model example lca_result <- exametrika::LCA(U) plot(lca_result, type = "IRP") plot(lca_result, type = "LCD") ## End(Not run)
## Not run: # IRT model example irt_result <- exametrika::IRT(U) plot(irt_result, type = "IRF", items = 1:5) plot(irt_result, type = "TIF") # LCA model example lca_result <- exametrika::LCA(U) plot(lca_result, type = "IRP") plot(lca_result, type = "LCD") ## End(Not run)
Calculate the polychoric correlation coefficient between two polytomous (categorical ordinal) variables. Polychoric correlation estimates the correlation between two theorized normally distributed continuous latent variables from two observed ordinal variables.
polychoric(x, y)
polychoric(x, y)
x |
A polytomous vector (categorical ordinal variable) |
y |
A polytomous vector (categorical ordinal variable) |
This function handles missing values (coded as -1 or NA) using pairwise deletion. The estimation uses maximum likelihood approach with Brent's method for optimization.
The polychoric correlation coefficient between x and y
# Example with simulated data set.seed(123) x <- sample(1:5, 100, replace = TRUE) y <- sample(1:4, 100, replace = TRUE) polychoric(x, y)
# Example with simulated data set.seed(123) x <- sample(1:5, 100, replace = TRUE) y <- sample(1:4, 100, replace = TRUE) polychoric(x, y)
Polychoric Correlation Matrix
PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL)
PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' PolychoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of polychoric correlations with exametrika class. Each element (i,j) represents the polychoric correlation between items i and j. The matrix is symmetric with ones on the diagonal.
# example code PolychoricCorrelationMatrix(J5S1000)
# example code PolychoricCorrelationMatrix(J5S1000)
Calculates the polyserial correlation coefficient between a continuous variable and an ordinal variable.
polyserial(x, y)
polyserial(x, y)
x |
A numeric vector representing the continuous variable. |
y |
A numeric vector representing the ordinal variable (must be integer values). |
This function implements Olsson et al.'s ad hoc method for estimating the polyserial correlation coefficient. The method assumes that the continuous variable follows a normal distribution and that the ordinal variable is derived from an underlying continuous normal variable through thresholds.
A numeric value representing the estimated polyserial correlation coefficient.
U.Olsson, F.Drasgow, and N.Dorans (1982). The polyserial correlation coefficient. Psychometrika, 47,337-347.
n <- 300 x <- rnorm(n) y <- sample(1:5, size = n, replace = TRUE) polyserial(x, y)
n <- 300 x <- rnorm(n) y <- sample(1:5, size = n, replace = TRUE) polyserial(x, y)
S3 method for printing objects of class "exametrika". This function formats and displays appropriate summary information based on the specific subclass of the exametrika object. Different types of analysis results (IRT, LCA, network models, etc.) are presented with customized formatting to highlight the most relevant information.
## S3 method for class 'exametrika' print(x, digits = 3, ...)
## S3 method for class 'exametrika' print(x, digits = 3, ...)
x |
An object of class "exametrika" with various possible subclasses |
digits |
Integer indicating the number of decimal places to display. Default is 3. |
... |
Additional arguments passed to print methods (not currently used) |
The function identifies the specific subclass of the exametrika object and tailors the output accordingly. For most analysis types, the function displays:
Basic model description and parameters
Estimation results (e.g., item parameters, latent class profiles)
Model fit statistics and diagnostics
Visual representations where appropriate (e.g., graphs for network models, scree plots for dimensionality analysis)
When printing network-based models (LDLRA, LDB, BINET), this function visualizes the network structure using graphs, which can help in interpreting complex relationships between items or latent variables.
Prints a formatted summary of the exametrika object to the console, with content varying by object subclass:
Basic descriptive statistics of the test
Eigenvalue analysis results with scree plot
Item-level statistics and psychometric properties
Item statistics for polytomous items
Data structure details including response patterns and weights
Item-item relationship measures (tetrachoric correlations, etc.)
Classical Test Theory reliability measures
Item parameters, ability estimates, and fit indices
Class/Rank profiles, distribution information, and model fit statistics
Cluster profiles, field distributions, and model diagnostics
Network visualizations, parameter estimates, and conditional probabilities
# Print IRT analysis results with 4 decimal places result <- IRT(J15S500) print(result, digits = 4) # Print Latent Class Analysis results result_lca <- LCA(J15S500, ncls = 3) print(result_lca)
# Print IRT analysis results with 4 decimal places result <- IRT(J15S500) print(result, digits = 4) # Print Latent Class Analysis results result_lca <- LCA(J15S500, ncls = 3) print(result_lca)
internal functions for PSD of Item parameters
PSD_item_params(model, Lambda, quadrature, marginal_posttheta)
PSD_item_params(model, Lambda, quadrature, marginal_posttheta)
model |
2,3,or 4PL |
Lambda |
item parameters Matrix |
quadrature |
quads |
marginal_posttheta |
marginal post theta |
The one-parameter logistic model is a model with only one parameter b. This model is a 2PLM model in which a is constrained to 1. This model is also called the Rasch model.
RaschModel(b, theta)
RaschModel(b, theta)
b |
slope parameter |
theta |
ability parameter |
Returns a numeric vector of probabilities between 0 and 1, representing
the probability of a correct response given the ability level theta. The probability
is calculated using the formula:
Calculates comprehensive descriptive statistics for a test, including measures of central tendency, variability, distribution shape, and reliability.
ScoreReport(U, na = NULL, Z = NULL, w = NULL)
ScoreReport(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item |
This function is intended for non-binary (ordinal or rated) response data. It calculates descriptive statistics for the overall test performance. If binary data is provided, an error message will be displayed.
An object of class "exametrika" and "TestStatistics" containing:
Number of items included in the test
Number of examinees (rows) in the dataset
Average score across all examinees
Median score
Standard deviation of test scores
Variance of test scores
Skewness of the score distribution (measure of asymmetry)
Kurtosis of the score distribution (measure of tail extremity)
Minimum score obtained
Maximum score obtained
Difference between maximum and minimum scores
Cronbach's alpha coefficient, a measure of internal consistency reliability
# Generate score report for sample ordinal data ScoreReport(J15S3810) # Example with rated data ScoreReport(J35S5000)
# Generate score report for sample ordinal data ScoreReport(J15S3810) # Example with rated data ScoreReport(J35S5000)
Prior distribution function with respect to the slope.
slopeprior(a, m, s, const = 1e-15)
slopeprior(a, m, s, const = 1e-15)
a |
slope coefficient |
m |
prior parameter to be set |
s |
prior parameter to be set |
const |
A very small constant |
to avoid overflow
softmax(x)
softmax(x)
x |
numeric vector |
The standardized score (z-score) indicates how far a student's performance deviates from the mean in units of standard deviation. This function is applicable only to binary response data.
The score is calculated by standardizing the passage rates:
where:
is student i's passage rate
is the mean passage rate
is the standard deviation of passage rates
sscore(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: sscore(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' sscore(U, na = NULL, Z = NULL, w = NULL)
sscore(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: sscore(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' sscore(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A numeric vector of standardized scores for each student. The scores follow a standard normal distribution with:
Mean = 0
Standard deviation = 1
Approximately 68% of scores between -1 and 1
Approximately 95% of scores between -2 and 2
Approximately 99% of scores between -3 and 3
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
The standardization allows for comparing student performance across different tests or groups. A positive score indicates above-average performance, while a negative score indicates below-average performance.
# using sample dataset sscore(J5S10)
# using sample dataset sscore(J5S10)
The Stanine (Standard Nine) scoring system divides students into nine groups based on a normalized distribution. This function is applicable only to binary response data.
These groups correspond to the following percentile ranges:
Stanine 1: lowest 4% (percentiles 1-4)
Stanine 2: next 7% (percentiles 5-11)
Stanine 3: next 12% (percentiles 12-23)
Stanine 4: next 17% (percentiles 24-40)
Stanine 5: middle 20% (percentiles 41-60)
Stanine 6: next 17% (percentiles 61-77)
Stanine 7: next 12% (percentiles 78-89)
Stanine 8: next 7% (percentiles 90-96)
Stanine 9: highest 4% (percentiles 97-100)
stanine(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: stanine(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' stanine(U, na = NULL, Z = NULL, w = NULL)
stanine(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: stanine(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' stanine(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A list containing two elements:
The score boundaries for each stanine level
The stanine score (1-9) for each student
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
Stanine scores provide a normalized scale with:
Mean = 5
Standard deviation = 2
Scores range from 1 to 9
Score of 5 represents average performance
Angoff, W. H. (1984). Scales, norms, and equivalent scores. Educational Testing Service. (Reprint of chapter in R. L. Thorndike (Ed.) (1971) Educational Measurement (2nd Ed.). American Council on Education.
result <- stanine(J15S500) # View score boundaries result$stanine # View individual scores result$stanineScore
result <- stanine(J15S500) # View score boundaries result$stanine # View individual scores result$stanineScore
Generating a DAG from data using a genetic algorithm.
StrLearningGA_BNM( U, Z = NULL, w = NULL, na = NULL, seed = 123, population = 20, Rs = 0.5, Rm = 0.005, maxParents = 2, maxGeneration = 100, successiveLimit = 5, crossover = 0, elitism = 0, filename = NULL, verbose = TRUE )
StrLearningGA_BNM( U, Z = NULL, w = NULL, na = NULL, seed = 123, population = 20, Rs = 0.5, Rm = 0.005, maxParents = 2, maxGeneration = 100, successiveLimit = 5, crossover = 0, elitism = 0, filename = NULL, verbose = TRUE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
seed |
seed for random. |
population |
Population size. The default is 20 |
Rs |
Survival Rate. The default is 0.5 |
Rm |
Mutation Rate. The default is 0.005 |
maxParents |
Maximum number of edges emanating from a single node. The default is 2. |
maxGeneration |
Maximum number of generations. |
successiveLimit |
Termination conditions. If the optimal individual does not change for this number of generations, it is considered to have converged. |
crossover |
Configure crossover using numerical values. Specify 0 for uniform crossover, where bits are randomly copied from both parents. Choose 1 for single-point crossover with one crossover point, and 2 for two-point crossover with two crossover points. The default is 0. |
elitism |
Number of elites that remain without crossover when transitioning to the next generation. |
filename |
Specify the filename when saving the generated adjacency matrix in CSV format. The default is null, and no output is written to the file. |
verbose |
verbose output Flag. default is TRUE |
This function generates a DAG from data using a genetic algorithm. Depending on the size of the data and the settings, the computation may take a significant amount of computational time. For details on the settings or algorithm, see Shojima(2022), section 8.5
Optimal adjacency matrix
Length of the test. The number of items included in the test.
Overall fit index for the test.See also TestFit
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
correct response ratio
Overall fit index for the test.See also TestFit
Adjacency matrix
Learned Parameters
Correct Response Rate tables
# Perform Structure Learning for Bayesian Network Model using Genetic Algorithm # Parameters are set for balanced exploration and computational efficiency StrLearningGA_BNM(J5S10, population = 20, # Size of population in each generation Rs = 0.5, # 50% survival rate for next generation Rm = 0.002, # 0.2% mutation rate for genetic diversity maxParents = 2, # Maximum of 2 parent nodes per item maxGeneration = 100, # Maximum number of evolutionary steps crossover = 2, # Use two-point crossover method elitism = 2 # Keep 2 best solutions in each generation )
# Perform Structure Learning for Bayesian Network Model using Genetic Algorithm # Parameters are set for balanced exploration and computational efficiency StrLearningGA_BNM(J5S10, population = 20, # Size of population in each generation Rs = 0.5, # 50% survival rate for next generation Rm = 0.002, # 0.2% mutation rate for genetic diversity maxParents = 2, # Maximum of 2 parent nodes per item maxGeneration = 100, # Maximum number of evolutionary steps crossover = 2, # Use two-point crossover method elitism = 2 # Keep 2 best solutions in each generation )
Generating a DAG from data using a Population-Based Incremental Learning
StrLearningPBIL_BNM( U, Z = NULL, w = NULL, na = NULL, seed = 123, population = 20, Rs = 0.5, Rm = 0.002, maxParents = 2, maxGeneration = 100, successiveLimit = 5, elitism = 0, alpha = 0.05, estimate = 1, filename = NULL, verbose = TRUE )
StrLearningPBIL_BNM( U, Z = NULL, w = NULL, na = NULL, seed = 123, population = 20, Rs = 0.5, Rm = 0.002, maxParents = 2, maxGeneration = 100, successiveLimit = 5, elitism = 0, alpha = 0.05, estimate = 1, filename = NULL, verbose = TRUE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
seed |
seed for random. |
population |
Population size. The default is 20 |
Rs |
Survival Rate. The default is 0.5 |
Rm |
Mutation Rate. The default is 0.002 |
maxParents |
Maximum number of edges emanating from a single node. The default is 2. |
maxGeneration |
Maximum number of generations. |
successiveLimit |
Termination conditions. If the optimal individual does not change for this number of generations, it is considered to have converged. |
elitism |
Number of elites that remain without crossover when transitioning to the next generation. |
alpha |
Learning rate. The default is 0.05 |
estimate |
In PBIL for estimating the adjacency matrix, specify by number from the following four methods: 1. Optimal adjacency matrix, 2. Rounded average of individuals in the last generation, 3. Rounded average of survivors in the last generation, 4. Rounded generational gene of the last generation. The default is 1. |
filename |
Specify the filename when saving the generated adjacency matrix in CSV format. The default is null, and no output is written to the file. |
verbose |
verbose output Flag. default is TRUE |
This function performs structural learning using the Population-Based Incremental Learning model(PBIL) proposed by Fukuda et al.(2014) within the genetic algorithm framework. Instead of learning the adjacency matrix itself, the 'genes of genes' that generate the adjacency matrix are updated with each generation. For more details, please refer to Fukuda(2014) and Section 8.5.2 of the text(Shojima,2022).
Optimal adjacency matrix
Length of the test. The number of items included in the test.
Overall fit index for the test.See also TestFit
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
correct response ratio
Overall fit index for the test.See also TestFit
Learned Parameters
Correct Response Rate tables
Fukuda, S., Yamanaka, Y., & Yoshihiro, T. (2014). A Probability-based evolutionary algorithm with mutations to learn Bayesian networks. International Journal of Artificial Intelligence and Interactive Multimedia, 3, 7–13. DOI: 10.9781/ijimai.2014.311
# Perform Structure Learning for Bayesian Network Model using PBIL # (Population-Based Incremental Learning) StrLearningPBIL_BNM(J5S10, population = 20, # Size of population in each generation Rs = 0.5, # 50% survival rate for next generation Rm = 0.005, # 0.5% mutation rate for genetic diversity maxParents = 2, # Maximum of 2 parent nodes per item alpha = 0.05, # Learning rate for probability update estimate = 4 # Use rounded generational gene method )
# Perform Structure Learning for Bayesian Network Model using PBIL # (Population-Based Incremental Learning) StrLearningPBIL_BNM(J5S10, population = 20, # Size of population in each generation Rs = 0.5, # 50% survival rate for next generation Rm = 0.005, # 0.5% mutation rate for genetic diversity maxParents = 2, # Maximum of 2 parent nodes per item alpha = 0.05, # Learning rate for probability update estimate = 4 # Use rounded generational gene method )
Generating DAG list from data using Population-Based Incremental learning
StrLearningPBIL_LDLRA( U, Z = NULL, w = NULL, na = NULL, seed = 123, ncls = 2, method = "R", population = 20, Rs = 0.5, Rm = 0.002, maxParents = 2, maxGeneration = 100, successiveLimit = 5, elitism = 0, alpha = 0.05, estimate = 1, filename = NULL, verbose = TRUE )
StrLearningPBIL_LDLRA( U, Z = NULL, w = NULL, na = NULL, seed = 123, ncls = 2, method = "R", population = 20, Rs = 0.5, Rm = 0.002, maxParents = 2, maxGeneration = 100, successiveLimit = 5, elitism = 0, alpha = 0.05, estimate = 1, filename = NULL, verbose = TRUE )
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
na |
na argument specifies the numbers or characters to be treated as missing values. |
seed |
seed for random. |
ncls |
number of latent class(rank). The default is 2. |
method |
specify the model to analyze the data.Local dependence latent class model is set to "C", latent rank model is set "R". The default is "R". |
population |
Population size. The default is 20 |
Rs |
Survival Rate. The default is 0.5 |
Rm |
Mutation Rate. The default is 0.002 |
maxParents |
Maximum number of edges emanating from a single node. The default is 2. |
maxGeneration |
Maximum number of generations. |
successiveLimit |
Termination conditions. If the optimal individual does not change for this number of generations, it is considered to have converged. |
elitism |
Number of elites that remain without crossover when transitioning to the next generation. |
alpha |
Learning rate. The default is 0.05 |
estimate |
In PBIL for estimating the adjacency matrix, specify by number from the following four methods: 1. Optimal adjacency matrix, 2. Rounded average of individuals in the last generation, 3. Rounded average of survivors in the last generation, 4. Rounded generational gene of the last generation. The default is 1. |
filename |
Specify the filename when saving the generated adjacency matrix in CSV format. The default is null, and no output is written to the file. |
verbose |
verbose output Flag. default is TRUE |
This function performs structural learning for each classes by using the Population-Based Incremental Learning model(PBIL) proposed by Fukuda et al.(2014) within the genetic algorithm framework. Instead of learning the adjacency matrix itself, the 'genes of genes' that generate the adjacency matrix are updated with each generation. For more details, please refer to Fukuda(2014) and Section 9.4.3 of the text(Shojima,2022).
Sample size. The number of rows in the dataset.
Length of the test. The number of items included in the test.
correct response ratio
adjacency matrix list
graph list
Learned Parameters.A three-dimensional array of patterns where item x rank x pattern.
Marginal Item Reference Matrix
IRP Indices which include Alpha, Beta, Gamma.
Test Reference Profile matrix.
latent Rank/Class Distribution
Rank/Class Membership Distribution
Overall fit index for the test.See also TestFit
Estimated parameters tables.
Correct Response Rate tables
Student information. It includes estimated class membership, probability of class membership, RUO, and RDO.
Fukuda, S., Yamanaka, Y., & Yoshihiro, T. (2014). A Probability-based evolutionary algorithm with mutations to learn Bayesian networks. International Journal of Artificial Intelligence and Interactive Multimedia, 3, 7–13. DOI: 10.9781/ijimai.2014.311
# Perform Structure Learning for LDLRA using PBIL algorithm # This process may take considerable time due to evolutionary optimization result.LDLRA.PBIL <- StrLearningPBIL_LDLRA(J35S515, seed = 123, # Set random seed for reproducibility ncls = 5, # Number of latent ranks maxGeneration = 10, method = "R", # Use rank model (vs. class model) elitism = 1, # Keep best solution in each generation successiveLimit = 15 # Convergence criterion ) # Examine the learned network structure # Plot Item Response Profiles showing item patterns across ranks plot(result.LDLRA.PBIL, type = "IRP", nc = 4, nr = 3) # Plot Test Response Profile showing overall response patterns plot(result.LDLRA.PBIL, type = "TRP") # Plot Latent Rank Distribution showing student distribution plot(result.LDLRA.PBIL, type = "LRD")
# Perform Structure Learning for LDLRA using PBIL algorithm # This process may take considerable time due to evolutionary optimization result.LDLRA.PBIL <- StrLearningPBIL_LDLRA(J35S515, seed = 123, # Set random seed for reproducibility ncls = 5, # Number of latent ranks maxGeneration = 10, method = "R", # Use rank model (vs. class model) elitism = 1, # Keep best solution in each generation successiveLimit = 15 # Convergence criterion ) # Examine the learned network structure # Plot Item Response Profiles showing item patterns across ranks plot(result.LDLRA.PBIL, type = "IRP", nc = 4, nr = 3) # Plot Test Response Profile showing overall response patterns plot(result.LDLRA.PBIL, type = "TRP") # Plot Latent Rank Distribution showing student distribution plot(result.LDLRA.PBIL, type = "LRD")
The StudentAnalysis function returns descriptive statistics for each individual student. Specifically, it provides the number of responses, the number of correct answers, the passage rate, the standardized score, the percentile, and the stanine.
StudentAnalysis(U, na = NULL, Z = NULL, w = NULL)
StudentAnalysis(U, na = NULL, Z = NULL, w = NULL)
U |
U is a data matrix of the type matrix or data.frame. |
na |
na argument specifies the numbers or characters to be treated as missing values.
|
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
w |
w is item weight vector |
Returns a data frame containing the following columns for each student:
ID: Student identifier
NR: Number of responses
NRS: Number-right score (total correct answers)
PR: Passage rate (proportion correct)
SS: Standardized score (z-score)
Percentile: Student's percentile rank
Stanine: Student's stanine score (1-9)
# using sample dataset StudentAnalysis(J15S500)
# using sample dataset StudentAnalysis(J15S500)
parameter transformation target_to_params
target_to_params_jac(target, nitems, ncat)
target_to_params_jac(target, nitems, ncat)
target |
optimize target vector |
nitems |
number of items |
ncat |
number of categories for each items |
A general function that returns the model fit indices.
TestFit(U, Z, ell_A, nparam)
TestFit(U, Z, ell_A, nparam)
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
ell_A |
log likelihood of this model |
nparam |
number of parameters for this model |
log likelihood of analysis model
log likelihood of benchmark model
log likelihood of null model
Chi-Square statistics for analysis model
Chi-Square statistics for null model
degrees of freedom of analysis model
degrees of freedom of null model
Normed Fit Index. Lager values closer to 1.0 indicate a better fit.
Relative Fit Index. Lager values closer to 1.0 indicate a better fit.
Incremental Fit Index. Lager values closer to 1.0 indicate a better fit.
Tucker-Lewis Index. Lager values closer to 1.0 indicate a better fit.
Comparative Fit Index. Lager values closer to 1.0 indicate a better fit.
Root Mean Square Error of Approximation. Smaller values closer to 0.0 indicate a better fit.
Akaike Information Criterion. A lower value indicates a better fit.
Consistent AIC.A lower value indicates a better fit.
Bayesian Information Criterion. A lower value indicates a better fit.
A general function that returns the model fit indices.
TestFitSaturated(U, Z, ell_A, nparam)
TestFitSaturated(U, Z, ell_A, nparam)
U |
U is either a data class of exametrika, or raw data. When raw data is given, it is converted to the exametrika class with the dataFormat function. |
Z |
Z is a missing indicator matrix of the type matrix or data.frame |
ell_A |
log likelihood of this model |
nparam |
number of parameters for this model |
log likelihood of analysis model
log likelihood of benchmark model
log likelihood of null model
Chi-Square statistics for analysis model
Chi-Square statistics for null model
degrees of freedom of analysis model
degrees of freedom of null model
Normed Fit Index. Lager values closer to 1.0 indicate a better fit.
Relative Fit Index. Lager values closer to 1.0 indicate a better fit.
Incremental Fit Index. Lager values closer to 1.0 indicate a better fit.
Tucker-Lewis Index. Lager values closer to 1.0 indicate a better fit.
Comparative Fit Index. Lager values closer to 1.0 indicate a better fit.
Root Mean Square Error of Approximation. Smaller values closer to 0.0 indicate a better fit.
Akaike Information Criterion. A lower value indicates a better fit.
Consistent AIC.A lower value indicates a better fit.
Bayesian Information Criterion. A lower value indicates a better fit.
Test Information Function for 4PLM
TestInformationFunc(params, theta)
TestInformationFunc(params, theta)
params |
parameter matrix |
theta |
ability parameter |
Returns a numeric vector representing the test information at each ability
level theta. The test information is the sum of item information functions for
all items in the test:
Calculates the expected score across all items on a test for a given ability level (theta) using Item Response Theory. The Test Response Function (TRF) is essentially the sum of the Item Characteristic Curves (ICCs) for all items in the test.
TestResponseFunc(params, theta)
TestResponseFunc(params, theta)
params |
parameter matrix |
theta |
ability parameter |
The Test Response Function computes the expected total score for an examinee with a given ability level (theta) across all items in the test. For each item, the function uses the logistic model with parameters a (discrimination), b (difficulty), c (guessing), and d (upper asymptote).
A numeric vector with the same length as theta, containing the expected total score for each ability level.
Calculates descriptive statistics for test scores, providing a comprehensive summary of central tendency, variability, and distribution shape. Different statistics are calculated based on the data type (binary, ordinal, rated, or nominal).
TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' TestStatistics(U, na = NULL, Z = NULL, w = NULL)
TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' TestStatistics(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'ordinal' TestStatistics(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
The returned object depends on the data type:
For binary data, a list of class c("exametrika", "TestStatistics") containing:
Length of the test. The number of items included in the test.
Sample size. The number of rows in the dataset.
Average number of correct answers.
Standard error of mean.
Variance of test scores.
Standard Deviation of test scores.
Skewness of score distribution (measure of asymmetry).
Kurtosis of score distribution (measure of tail extremity).
Minimum score.
Maximum score.
Range of scores (Max - Min).
First quartile. Same as the 25th percentile.
Median. Same as the 50th percentile.
Third quartile. Same as the 75th percentile.
Interquartile range. Calculated by subtracting Q1 from Q3.
Stanine score boundaries, see stanine
.
For ordinal and rated data, the function calls ScoreReport
and returns
its result. See ScoreReport
for details of the returned object.
For nominal data, an error is returned as this function does not support nominal data.
# Basic usage stats <- TestStatistics(J15S500) print(stats) # Extract specific statistics cat("Mean score:", stats$Mean, "\n") cat("Standard deviation:", stats$SD, "\n") # View score distribution summary summary_stats <- data.frame( Min = stats$Min, Q1 = stats$Q1, Median = stats$Median, Mean = stats$Mean, Q3 = stats$Q3, Max = stats$Max ) print(summary_stats)
# Basic usage stats <- TestStatistics(J15S500) print(stats) # Extract specific statistics cat("Mean score:", stats$Mean, "\n") cat("Standard deviation:", stats$SD, "\n") # View score distribution summary summary_stats <- data.frame( Min = stats$Min, Q1 = stats$Q1, Median = stats$Median, Mean = stats$Mean, Q3 = stats$Q3, Max = stats$Max ) print(summary_stats)
Tetrachoric Correlation is superior to the phi coefficient as a measure of the relation of an item pair. See Divgi, 1979; Olsson, 1979;Harris, 1988.
tetrachoric(x, y)
tetrachoric(x, y)
x |
binary vector x |
y |
binary vector y |
Returns a single numeric value of class "exametrika" representing the tetrachoric correlation coefficient between the two binary variables. The value ranges from -1 to 1, where:
1 indicates perfect positive correlation
-1 indicates perfect negative correlation
0 indicates no correlation
Divgi, D. R. (1979). Calculation of the tetrachoric correlation coefficient. Psychometrika, 44, 169–172.
Olsson, U. (1979). Maximum likelihood estimation of the polychoric correlation coefficient. Psychometrika,44, 443–460.
Harris, B. (1988). Tetrachoric correlation coefficient. In L. Kotz, & N. L. Johnson (Eds.), Encyclopedia of statistical sciences (Vol. 9, pp. 223–225). Wiley.
Calculates the matrix of tetrachoric correlations between all pairs of items. Tetrachoric Correlation is superior to the phi coefficient as a measure of the relation of an item pair. This function is applicable only to binary response data.
TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL)
TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## Default S3 method: TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL) ## S3 method for class 'binary' TetrachoricCorrelationMatrix(U, na = NULL, Z = NULL, w = NULL)
U |
Either an object of class "exametrika" or raw data. When raw data is given,
it is converted to the exametrika class with the |
na |
Values to be treated as missing values. |
Z |
Missing indicator matrix of type matrix or data.frame. Values of 1 indicate observed responses, while 0 indicates missing data. |
w |
Item weight vector specifying the relative importance of each item. |
A matrix of tetrachoric correlations with exametrika class. Each element (i,j) represents the tetrachoric correlation between items i and j. The matrix is symmetric with ones on the diagonal.
This function is implemented using a binary data compatibility wrapper and will raise an error if used with polytomous data.
# example code TetrachoricCorrelationMatrix(J15S500)
# example code TetrachoricCorrelationMatrix(J15S500)
The three-parameter logistic model is a model where the lower asymptote parameter c is added to the 2PLM
ThreePLM(a, b, c, theta)
ThreePLM(a, b, c, theta)
a |
slope parameter |
b |
location parameter |
c |
lower asymptote parameter |
theta |
ability parameter |
Returns a numeric vector of probabilities between c and 1, representing
the probability of a correct response given the ability level theta. The probability
is calculated using the formula:
The two-parameter logistic model is a classic model that defines the probability of a student with ability theta successfully answering item j, using both a slope parameter and a location parameter.
TwoPLM(a, b, theta)
TwoPLM(a, b, theta)
a |
slope parameter |
b |
location parameter |
theta |
ability parameter |
Returns a numeric vector of probabilities between 0 and 1, representing
the probability of a correct response given the ability level theta. The probability
is calculated using the formula: