Skip to content

Commit ffb765c

Browse files
committed
ENH: use np.float as dtype
1 parent b395184 commit ffb765c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quantecon/ecdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ def __call__(self, x):
5151
def f(a):
5252
return np.mean(self.observations <= a)
5353
vf = np.frompyfunc(f, 1, 1)
54-
return vf(x)
54+
return vf(x).astype(np.float)

0 commit comments

Comments
 (0)