def send_report(self): self.report_plot() caption = report.render_items_vert( (("Scoring method", self.Scores[self.score_index][0]), ("Upper treshold", self.max_value), ("Lower threshold", self.min_value), ("Compute null distribution", self.compute_null), ("Permutations", self.permutations_count), ("α-value", self.alpha_value), ("Best Ranked", self.n_best))) self.report_caption(caption) self.report_caption(self.selectedInfoLabel.text())
def send_report(self): self.report_plot() caption = report.render_items_vert(( ("Scoring method", self.Scores[self.score_index][0]), ("Upper treshold", self.max_value), ("Lower threshold", self.min_value), ("Compute null distribution", self.compute_null), ("Permutations", self.permutations_count), ("α-value", self.alpha_value), ("Best Ranked", self.n_best) )) self.report_caption(caption) self.report_caption(self.selectedInfoLabel.text())