Draw a random-beta distribution in netlogo
问题 I'm attempting to generate a breed-owned variable which draws it's values from a random beta distribution in Netlogo. I've found the "bc" code example online but am struggling to adapt it to what I need. Right now, for convenience, I've generate my distribution from a random-normal distribution using create-breed 500 [ set target_factor random-normal 0.9 0.05 if target_factor > 1 [set target_factor 0.9999999999] if target_Factor < 0.5 [set target_factor 0.5000000001] ] So basically I'd like