Skip to content

Commit

Permalink
Update vec-cumulative-functions.R
Browse files Browse the repository at this point in the history
  • Loading branch information
spsanderson committed Sep 12, 2024
1 parent 55de5ba commit 551df98
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions R/vec-cumulative-functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ kurtosis_vec <- function(.x) {
de <- (1 / n * sum(d_diff))^2
k <- nu / de
return(k)
print(k)
}

#' Compute Skewness of a Vector
Expand Down Expand Up @@ -460,5 +459,4 @@ skewness_vec <- function(.x) {
de <- (1 / n * sum(d_diff))^(3 / 2)
s <- nu / de
return(s)
print(s)
}

0 comments on commit 551df98

Please sign in to comment.