This commit is contained in:
test 2022-05-14 18:13:51 +02:00
parent e2ff7032bf
commit 0f1d0b16c0

View File

@ -226,11 +226,11 @@
"source": [ "source": [
"def draw_distribution():\n", "def draw_distribution():\n",
" \"\"\"Funkcja rysuje rozkład statystyki testowej\"\"\"\n", " \"\"\"Funkcja rysuje rozkład statystyki testowej\"\"\"\n",
" # Losowe dane bo nie jestem pewien co tu dać teraz\n",
" dummy = np.random.normal(170, 10, 500)\n", " dummy = np.random.normal(170, 10, 500)\n",
" plt.hist(dummy)\n", " plt.hist(dummy)\n",
" plt.show()\n", " plt.show()\n",
" pass\n", "draw_distribution() # To trzeba wywalić potem"
"draw_distribution()"
], ],
"metadata": { "metadata": {
"collapsed": false, "collapsed": false,