Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions statannotations/Annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ def annotate(self, line_offset=None, line_offset_to_group=None):

return self._get_output()

def apply_and_annotate(self):
def apply_and_annotate(self, num_comparisons='auto', **stats_params):
"""Applies a configured statistical test and annotates the plot"""

self.apply_test()
self.apply_test(num_comparisons='auto', **stats_params)
return self.annotate()

def configure(self, **parameters):
Expand Down