R simulate inverse normal distribution -


i'm wondering there function in r can use simulate distribution opposite normal distribution? opposite mean instead of starting low value , gradually increasing peak , gradually decreasing , want distribution start high value gradually decreasing small value , increasing initial value. thanks.

if looking probability distribution starts high, goes low , ends high try beta distribution alpha = beta = 0.5. in r:

rb <- rbeta(1000, 0.5, 0.5) hist(rb) 

it produces values between (0,1), might want scale and/or shift appropriately.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -