From 7f823f372dea7c25f3218b6a2de590697c132a82 Mon Sep 17 00:00:00 2001 From: Mark Teese Date: Fri, 16 Feb 2018 13:28:28 +0100 Subject: [PATCH] Update README.md More accessible installation instructions for newer users. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 84319db..f44605a 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,19 @@ v0.3.2: This version contains various fixes to allow compatibility with Python slightly modify the output of bootstrap_indexes, from a Python list to a Numpy array that can be iterated over in the same manner. This should only be important in extremely unusual situations. + + + +Installation and Usage +====================== +As described (), the package can be installed using pip. + +`pip install scikits.bootstrap` + +Usage example for python 3.x: + +``` +import scikits.bootstrap as boot +import numpy as np +boot.ci(np.random.rand(100), np.average) +```