R/monoreg.rowwise.R

Defines functions monoreg.rowwise

Documented in monoreg.rowwise

## File Name: monoreg.rowwise.R
## File Version: 0.11


# monotone regression for all rows in a matrix
monoreg.rowwise <- function(yM, wM)
{
    yM <- as.matrix(yM)
    wM <- as.matrix(wM)
    res <- sirt_rcpp_monoreg_rowwise( YM=yM, WM=wM )
    return(res)
}

Try the sirt package in your browser

Any scripts or data that you put into this service are public.

sirt documentation built on Aug. 11, 2023, 5:07 p.m.