| plot.ticm | R Documentation |
ticm ObjectProduces a scatterplot matrix of the estimated independent components stored in a ticm object,
typically returned by icm_test.
## S3 method for class 'ticm'
plot(x, ...)
x |
An object of class |
... |
Additional graphical parameters passed to |
The function extracts the matrix of estimated independent components from x (as obtained from the
ICA step within icm_test) and displays a scatterplot matrix using pairs.
This visualization is useful for a quick diagnostic of remaining dependence: under a well-fitting independent
component model, pairwise plots of the estimated components should show little visible structure.
The argument ... is forwarded to pairs, allowing customization of points, labels, and panel
functions (e.g., adding smoothers or correlations via panel = or upper.panel = ).
No return value, called for side effects.
icm_test, pairs
n <- 200
X <- cbind(runif(n), rexp(n), rnorm(n))
# in practice, the number of resamples should be much larger
res <- icm_test(X)
plot(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.