Documentation Error : random number generator rng.randint
doesn't work
#2625
Replies: 1 comment
-
yes I think this is correct. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was going through the new documentation for The Boltzmann Wealth Model where in
Adding Space
section , a method calledself.rng.randint
is used but while running that particular section of code gives error.Looking into the documentation for Numpy 2.2 I think
self.rng.randint
should be replaced withself.rng.intergers
. Since there is no as such method calledrandint
in random generator (rng) module.Is this correct? Or am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions