From 6034d6fb282c2d69bda13201cdab7d1447526126 Mon Sep 17 00:00:00 2001 From: "P.M. Sutter" Date: Fri, 23 May 2014 22:07:02 -0400 Subject: [PATCH] more bins in number function --- python_tools/void_python_tools/voidUtil/plotUtil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_tools/void_python_tools/voidUtil/plotUtil.py b/python_tools/void_python_tools/voidUtil/plotUtil.py index 5b76fe1..cd29bba 100644 --- a/python_tools/void_python_tools/voidUtil/plotUtil.py +++ b/python_tools/void_python_tools/voidUtil/plotUtil.py @@ -79,7 +79,7 @@ def plotNumberFunction(catalogList, boxVol *= 1.e-9 # Mpc->Gpc - bins = 100./5. + bins = 100. hist, binEdges = np.histogram(data, bins=bins, range=(0., 100.)) binCenters = 0.5*(binEdges[1:] + binEdges[:-1])