Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

geometric-mean

Python : easy way to do geometric mean in python?

June 10, 2023 by Tarik

The formula of the gemetric mean is: So you can easily write an algorithm like: import numpy as np def geo_mean(iterable): a = np.array(iterable) return a.prod()**(1.0/len(a)) You do not have to use numpy for that, but it tends to perform operations on arrays faster than Python. See this answer for why. In case the chances … Read more

Categories python Tags geometric-mean, math, python, statistics Leave a comment

Geometric Mean: is there a built-in?

December 23, 2022 by Tarik

No, but there are a few people who have written one, such as here. Another possibility is to use this: exp(mean(log(x)))

Categories r Tags built-in, geometric-mean, r, statistics Leave a comment

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa