plot_total {patterncausality} | R Documentation |
Plot Total Pattern Causality
Description
Visualizes the total pattern causality strength as a barplot.
This function takes a pc_fit
object and generates a barplot showing the
overall causality strength.
Usage
plot_total(x, ...)
Arguments
x |
An object containing pattern causality results, typically a |
... |
Additional arguments passed to the underlying plotting functions. |
Value
NULL invisibly.
References
Stavroglou et al. (2020) doi:10.1073/pnas.1918269117
See Also
plot_components
for visualizing individual causality components.
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_total(pc_result)
[Package patterncausality version 0.2.1 Index]