R/linking_haberman_bisquare_weight.R

Defines functions linking_haberman_bisquare_weight

## File Name: linking_haberman_bisquare_weight.R
## File Version: 0.02

linking_haberman_bisquare_weight <- function(x, cutoff)
{
    wgt_adj <- ( 1 - ( x / cutoff )^2 )^2
    wgt_adj <- (abs(x)<=cutoff)*wgt_adj
    return(wgt_adj)
}
alexanderrobitzsch/sirt documentation built on April 13, 2024, 4:06 a.m.