Last active
June 26, 2024 09:47
-
-
Save geotheory/0c61cc0059ea1a8b1b78b518c3099bd8 to your computer and use it in GitHub Desktop.
Geometric mean function in R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
geo_mean = funcction(x) log(x) |> mean() |> exp() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment