Skip to content

Commit

Permalink
Increase n_bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaGusev committed Nov 22, 2024
1 parent 1f6c2cb commit bb0c97d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_table_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def display_str(text: str) -> str:
return text.replace("_", " ").capitalize()


def bootstrap_mean(data: List[float], n_bootstrap: int = 100) -> Tuple[float, float, float]:
def bootstrap_mean(data: List[float], n_bootstrap: int = 1000) -> Tuple[float, float, float]:
means = []
for _ in range(n_bootstrap):
sample = np.random.choice(data, size=len(data), replace=True)
Expand Down

0 comments on commit bb0c97d

Please sign in to comment.