Skip to contents

Comprehensive summary of joint dependencies across all stations.

Usage

joint_analysis_summary(data, variable = "wave_height")

Arguments

data

Data frame with buoy data

variable

Variable to analyze (default: "wave_height")

Value

List containing all joint analysis results

Examples

if (FALSE) { # \dontrun{
data <- data.frame(
  time = rep(seq(as.POSIXct("2024-01-01"), by = "hour", length.out = 100), 2),
  station_id = rep(c("M2", "M3"), each = 100),
  wave_height = c(rnorm(100, 3, 1), rnorm(100, 2.5, 0.8))
)
joint_analysis_summary(data)
} # }