Update Journaldebord.md

parent 8911e613
......@@ -30,4 +30,13 @@ print('Moyenne = ',b )
print('Ecart type = ', c )
print('Mediane = ', d )
print('Valeur min = ', e )
print('Valeur max = ', f )
\ No newline at end of file
print('Valeur max = ', f )
On peut également tracer des graphiques:
1. en sequence plot avec le code:
a = np.array([rentrer des valeurs])
b = np.linspace(0,100,100)
pl.plot(b,a)
2. en histogramme:
c = pl.hist(a)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment