numba - TypingError: cannot determine Numba type of <class 'builtin_function_or_method'>
Pandas and several other function calls in your code will not work with nopython=True
. The available libraries that can be used with numba jit in nopython is fairly limited (pretty much only to numpy arrays and certain python builtin libraries). You can find more information here