Talk:Modified random distribution
From Rosetta Code
Python plots[edit]
RC can only handle text, but the following appended to the Python solution produces pretty plots.
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')