Question about numpy.apply_along_axis

Question about numpy.apply_along_axis

by Juan Pablo Ruz Cuen -
Number of replies: 1
The documentation for numpy.apply_along_axis  says it has the following syntaxis:

numpy_apply_along_axis (func1d , axis , arr , *args , **kwargs)

I'm a little confused with how the *args works when you need to send multiple arguments. I tried doing (func1d, axis = 0, arg_1,arg_2,...) but it's not working for more than 1 argument. Does anyone know if there is a special way to format multiple argument and send them as *args?

Thanks in advance!
In reply to Juan Pablo Ruz Cuen

Re: Question about numpy.apply_along_axis

by Juan Pablo Ruz Cuen -

Solved! Apparently that way of putting it was correct after all (accuracy was around 86%).