Learn R Programming

patterncausality (version 0.2.1)

summary.pc_effect: Summarize Pattern Causality Effect

Description

Provides a summary of the pattern causality effect analysis results. This function displays the summary statistics for the effects, including the number of components and the strongest effects.

Usage

# S3 method for pc_effect
summary(object, ...)

Value

Invisibly returns the input object.

Arguments

object

A pc_effect object.

...

Additional arguments passed to the summary function.

Examples

Run this code
# \donttest{
data(climate_indices)
dataset <- climate_indices[, -1]
pc_matrix_obj <- pcMatrix(dataset, E = 3, tau = 1, 
  metric = "euclidean", h = 1, weighted = TRUE, 
  verbose = FALSE)
effects <- pcEffect(pc_matrix_obj)
summary(effects)
# }

Run the code above in your browser using DataLab