Talk:Modified random distribution: Difference between revisions

From Rosetta Code
Content added Content deleted
(Python plots.)
(No difference)

Revision as of 00:42, 26 February 2021

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)