Learn R Programming

neurobase (version 1.32.4)

density.nifti: Density of Values in an Image

Description

Computes the density of values of an image with the option for a mask.

Usage

# S3 method for nifti
density(x, ..., mask)

# S3 method for anlz density(x, ..., mask)

Value

Output of density

Arguments

x

Object of class nifti

...

Arguments passed to density.default

mask

object to subset the image. If missing, then all values of the image are plotted.

Examples

Run this code
img = nifti(array(rnorm(10^3), dim = rep(10, 3)))
mask = img > 0
density(img, mask = mask)
density(img)

density(as.anlz(img), mask = mask)
density(as.anlz(img))

Run the code above in your browser using DataLab