MixfMRI (version 0.1-0)

Print Objects: Print fclust related outputs

Description

Print flcust related outputs.

Usage

# S3 method for fclust
print(x, ...)

Arguments

x

an object with the class attributes.

...

other arguments to the print function.

Value

A summary of fclust object is printed.

Details

x is the return result from fclust().

References

http://maitra.public.iastate.edu/

See Also

set.global(), fclust().

Examples

Run this code
# NOT RUN {
library(MixfMRI, quietly = TRUE)
set.seed(1234)

### Check 2d data.
da <- pval.2d.complex
id <- !is.na(da)
PV.gbd <- da[id]
# hist(PV.gbd, nclass = 100, main = "p-value")

### Test 2d data.
id.loc <- which(id, arr.ind = TRUE)
X.gbd <- t(t(id.loc) / dim(da))
ret <- fclust(X.gbd, PV.gbd, K = 2)
print(ret)
# }

Run the code above in your browser using DataLab