An analog to rnorm in python
07:16 04 May 2020

Good morning!

I am looking to create an analog of some code in R

Basically, I have a function that, among other things, takes a seed provided by the user (default is NULL), along with a specific distribution (default is rnorm), and outputs 9 random numbers, saved as a vector "e". This is what it looked like in R...

function (...other variables..., seed=NULL, dist=rnorm)

...other code...

e <- dist(9,...)

Now I'm converting the function to Python, but I can't quite seem to find an analog that would work, where a user can replace the base seed and distribution.

Here's what i have so far...

def (...other variables..., seed=None, dist=?):

...other code...

e = dist(9)
python r function distribution normal-distribution