Learn R Programming

neurobase (version 1.32.4)

quantile_img: Create Quantile Image

Description

Creates output image of the quantiles that each voxel is in, after applying the mask

Usage

quantile_img(img, mask = NULL, ...)

Value

Object of class nifti

Arguments

img

Character vector, or object of class nifti

mask

Mask to determine cumulative distribution function (cdf) from

...

Additional arguments to pass to ecdf

Examples

Run this code
set.seed(5)
dims = rep(10, 3)
arr = array(rnorm(prod(dims)), dim = dims)
nim = oro.nifti::nifti(arr)
qimg = quantile_img(nim)
qarr = quantile_img(arr)
testthat::expect_equal(qarr, array(qimg, dim = dim(qarr)))
qimg = quantile_img(nim, mask = nim > 0)

Run the code above in your browser using DataLab