Talk:Modified random distribution

From Rosetta Code
Revision as of 00:42, 26 February 2021 by rosettacode>Paddy3118 (Python plots.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Python plots

RC can only handle text, but the following appended to the Python solution produces pretty plots. <lang python>if __name__ == '__main__':

   import pandas as pd
   x, y = zip(*[(x / 1001, modifier(x / 1001)) for x in range(1001)])
   dfm = pd.DataFrame({'x': x, 'modifier(x)': y})
   dfm.plot.line(x='x', title='Probability Modifier')
   df = pd.DataFrame({'data': data})
   df.plot.hist(bins=21, title='Histogram of generated numbers')

</lang> --Paddy3118 (talk) 00:41, 26 February 2021 (UTC)