Lines Matching refs:threshold
93 * @param int $threshold
98 …private function commonGivenQuery(string $sex, string $type, bool $show_tot, int $threshold, int $… argument
147 if ($total < $threshold) {
185 * @param int $threshold
190 public function commonGiven(int $threshold = 1, int $maxtoshow = 10): string argument
192 return $this->commonGivenQuery('B', 'nolist', false, $threshold, $maxtoshow);
198 * @param int $threshold
203 public function commonGivenTotals(int $threshold = 1, int $maxtoshow = 10): string argument
205 return $this->commonGivenQuery('B', 'nolist', true, $threshold, $maxtoshow);
211 * @param int $threshold
216 public function commonGivenList(int $threshold = 1, int $maxtoshow = 10): string argument
218 return $this->commonGivenQuery('B', 'list', false, $threshold, $maxtoshow);
224 * @param int $threshold
229 public function commonGivenListTotals(int $threshold = 1, int $maxtoshow = 10): string argument
231 return $this->commonGivenQuery('B', 'list', true, $threshold, $maxtoshow);
237 * @param int $threshold
242 public function commonGivenTable(int $threshold = 1, int $maxtoshow = 10): string argument
244 return $this->commonGivenQuery('B', 'table', false, $threshold, $maxtoshow);
250 * @param int $threshold
255 public function commonGivenFemale(int $threshold = 1, int $maxtoshow = 10): string argument
257 return $this->commonGivenQuery('F', 'nolist', false, $threshold, $maxtoshow);
263 * @param int $threshold
268 public function commonGivenFemaleTotals(int $threshold = 1, int $maxtoshow = 10): string argument
270 return $this->commonGivenQuery('F', 'nolist', true, $threshold, $maxtoshow);
276 * @param int $threshold
281 public function commonGivenFemaleList(int $threshold = 1, int $maxtoshow = 10): string argument
283 return $this->commonGivenQuery('F', 'list', false, $threshold, $maxtoshow);
289 * @param int $threshold
294 public function commonGivenFemaleListTotals(int $threshold = 1, int $maxtoshow = 10): string argument
296 return $this->commonGivenQuery('F', 'list', true, $threshold, $maxtoshow);
302 * @param int $threshold
307 public function commonGivenFemaleTable(int $threshold = 1, int $maxtoshow = 10): string argument
309 return $this->commonGivenQuery('F', 'table', false, $threshold, $maxtoshow);
315 * @param int $threshold
320 public function commonGivenMale(int $threshold = 1, int $maxtoshow = 10): string argument
322 return $this->commonGivenQuery('M', 'nolist', false, $threshold, $maxtoshow);
328 * @param int $threshold
333 public function commonGivenMaleTotals(int $threshold = 1, int $maxtoshow = 10): string argument
335 return $this->commonGivenQuery('M', 'nolist', true, $threshold, $maxtoshow);
341 * @param int $threshold
346 public function commonGivenMaleList(int $threshold = 1, int $maxtoshow = 10): string argument
348 return $this->commonGivenQuery('M', 'list', false, $threshold, $maxtoshow);
354 * @param int $threshold
359 public function commonGivenMaleListTotals(int $threshold = 1, int $maxtoshow = 10): string argument
361 return $this->commonGivenQuery('M', 'list', true, $threshold, $maxtoshow);
367 * @param int $threshold
372 public function commonGivenMaleTable(int $threshold = 1, int $maxtoshow = 10): string argument
374 return $this->commonGivenQuery('M', 'table', false, $threshold, $maxtoshow);
380 * @param int $threshold
385 public function commonGivenUnknown(int $threshold = 1, int $maxtoshow = 10): string argument
387 return $this->commonGivenQuery('U', 'nolist', false, $threshold, $maxtoshow);
393 * @param int $threshold
398 public function commonGivenUnknownTotals(int $threshold = 1, int $maxtoshow = 10): string argument
400 return $this->commonGivenQuery('U', 'nolist', true, $threshold, $maxtoshow);
406 * @param int $threshold
411 public function commonGivenUnknownList(int $threshold = 1, int $maxtoshow = 10): string argument
413 return $this->commonGivenQuery('U', 'list', false, $threshold, $maxtoshow);
419 * @param int $threshold
424 public function commonGivenUnknownListTotals(int $threshold = 1, int $maxtoshow = 10): string argument
426 return $this->commonGivenQuery('U', 'list', true, $threshold, $maxtoshow);
432 * @param int $threshold
437 public function commonGivenUnknownTable(int $threshold = 1, int $maxtoshow = 10): string argument
439 return $this->commonGivenQuery('U', 'table', false, $threshold, $maxtoshow);
498 * @param int $threshold
502 private function topSurnames(int $number_of_surnames, int $threshold): array argument
513 ->having(new Expression('COUNT(n_surn)'), '>=', $threshold)
555 * @param int $threshold
564 int $threshold, argument
568 $surnames = $this->topSurnames($number_of_surnames, $threshold);
609 * @param int $threshold
616 int $threshold = 1, argument
620 … return $this->commonSurnamesQuery('nolist', false, $threshold, $number_of_surnames, $sorting);
626 * @param int $threshold
633 int $threshold = 1, argument
637 … return $this->commonSurnamesQuery('nolist', true, $threshold, $number_of_surnames, $sorting);
643 * @param int $threshold
650 int $threshold = 1, argument
654 return $this->commonSurnamesQuery('list', false, $threshold, $number_of_surnames, $sorting);
660 * @param int $threshold
667 int $threshold = 1, argument
671 return $this->commonSurnamesQuery('list', true, $threshold, $number_of_surnames, $sorting);