Files
openide/python/testData/codeInsight/mlcompletion/prev2calls/assignmentVisitorTwoDifferentPackages.py
andrey.matveevandintellij-monorepo-bot 073af04a6a PY-38581 Implement previous calls feature
GitOrigin-RevId: 5682350bfd95a6abfc325b511c55d6e27b41476a
2020-02-25 05:37:15 +00:00

7 lines
159 B
Python

import numpy as np
import matplotlib.pyplot as plt
mu, sigma = 2, 0.5
v = np.random.normal(mu, sigma, 10000)
plt.hist(v, bins=50, density=1)
plt.show()
<caret>