plot_components {patterncausality} | R Documentation |
Plot Pattern Causality Components
Description
Visualizes the positive, negative, and dark causality components as a barplot.
This function takes a pc_fit
object and generates a barplot showing the
strength of each causality component.
Usage
plot_components(x, ...)
Arguments
x |
An object containing pattern causality results, typically a |
... |
Additional arguments passed to the underlying plotting functions. |
Value
NULL invisibly.
Examples
data(climate_indices)
X <- climate_indices$AO
Y <- climate_indices$AAO
pc_result <- pcLightweight(X, Y, E = 3, tau = 2, metric = "euclidean", h = 1, weighted = TRUE)
plot_components(pc_result)
[Package patterncausality version 0.2.1 Index]