Skip to content

Commit 6e24fd4

Browse files
committed
Set mean=False by default
1 parent 998c06c commit 6e24fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adaptive/learner/average_learner1D.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def min_samples_per_point(self) -> int:
136136
return 0
137137
return min(self._number_samples.values())
138138

139-
def to_numpy(self, mean: bool = True) -> np.ndarray:
139+
def to_numpy(self, mean: bool = False) -> np.ndarray:
140140
if mean:
141141
return super().to_numpy()
142142
else:

0 commit comments

Comments
 (0)