Skip to content

Commit

Permalink
print: do not summarize per column, but overall
Browse files Browse the repository at this point in the history
  • Loading branch information
lschneiderbauer committed Dec 27, 2024
1 parent 4cdb003 commit 4521cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/fcwtr_scalogram.R
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ print.fcwtr_scalogram <- function(x, ...) {
cat("<> Sigma: ", attr(x, "sigma"), "\n", sep = "")

cat("Time/frequency matrix summary\n")
print(summary(as.matrix(x)))
print(summary(as.vector(as.matrix(x))))

invisible(x)
}
Expand Down

0 comments on commit 4521cc2

Please sign in to comment.