diff --git a/README.md b/README.md index aebb88a..ece342f 100644 --- a/README.md +++ b/README.md @@ -1996,8 +1996,10 @@ Plot # $ pip3 install matplotlib from matplotlib import pyplot pyplot.plot( [, , ...]) +pyplot.hist() pyplot.savefig() pyplot.show() +pyplot.clf() # Clears figure. ``` diff --git a/index.html b/index.html index 6a66047..c4972a0 100644 --- a/index.html +++ b/index.html @@ -1713,8 +1713,10 @@ reader(adder(printer())) # 100, 101, ..., 109
# $ pip3 install matplotlib
 from matplotlib import pyplot
 pyplot.plot(<data_1> [, <data_2>, ...])
+pyplot.hist(<data>)
 pyplot.savefig(<filename>)
 pyplot.show()
+pyplot.clf()  # Clears figure.
 

#Table

Prints a CSV file as an ASCII table: