You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not completely true. PythonCall.jl has indeed difficulties with the mentioned example because of comparisons between python object (series) and julia object ("value"). you need to use the @py macro if you want this to work with PythonCall.jl to the best of my knowledge.
I rather prefer to use native julia syntax, which is indeed the main reason I am going for PyCall.jl when calling Python from Julia.
Came here to request the same, in fact I would be happy to "just" be able to select rows from a pandas data frame, e.g. df[[1,2]] to select the first two rows
I am using pandas with PyCall.jl and would like to write something like
looking into the code
https://github.com/JuliaPy/PyCall.jl/blob/master/src/PyCall.jl#L349-L361
it seems that this is just not supported currently (because of some legacy where indexing was used instead of dot access)
The text was updated successfully, but these errors were encountered: