From fba9cc5f70bf4fba3e3c0f83d665556e29c30d7b Mon Sep 17 00:00:00 2001 From: ESiddle <59693552+ESiddle@users.noreply.github.com> Date: Wed, 6 May 2020 20:18:26 +0100 Subject: [PATCH] Update README.md error in basic use example, should be import numpy as np --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1c2638..8a761e4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Current version is based on Scientific Colourmaps Version 6.0.4 (06.01.2020) ```python from cmcrameri import cm import matplotlib.pyplot as plt -import numpy as mp +import numpy as np plt.pcolor(np.random.rand(10,10), cmap=cm.batlow) # or any of the other colourmaps made by Fabio Crameri ``` ### Extra instructions