Python: how to choose a value from a distribution?

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

I would like to choose the correspondent value from a distribution

My distribution follows a truncated Levy distribution

x = [(r + r0)**(-a)] * exp(−r/κ)

The function is

def levy(r0, a, k, r):
    return (r + r0)**(-a)*exp(-r/k)

I would like to for a given random number x find the relative r.

For instance

r0 = 100  
a = 2
k = 1500

import random
x = random.uniform(0, 1)
### Write a function to find r given x
profilepic.png
manpreet 2 years ago

Brodaly speaking, what you want is to:

  • write the cumulative function, F
  • write its f="https://forum.tuteehub.com/tag/inverse">inverse, F_inv
  • run F_inv(x). This will give you random numbers from your distribution.

If you can't do the first f="https://forum.tuteehub.com/tag/step">step analytically (), you can at least do it numerically with some given resolution, so you won't get stuck with something non-deterministic.


0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.