mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
13 lines
278 B
Cython
13 lines
278 B
Cython
from pandas._libs.dtypes cimport numeric_t
|
|
|
|
|
|
cdef numeric_t kth_smallest_c(numeric_t* arr, Py_ssize_t k, Py_ssize_t n) nogil
|
|
|
|
cdef enum TiebreakEnumType:
|
|
TIEBREAK_AVERAGE
|
|
TIEBREAK_MIN,
|
|
TIEBREAK_MAX
|
|
TIEBREAK_FIRST
|
|
TIEBREAK_FIRST_DESCENDING
|
|
TIEBREAK_DENSE
|