Kenta Murata
Kenta Murata
For statistical data analysis, I often use boxplot and violinplot, and scatter plot matrix layout. There are examples of them in seaborn's gallery: - [Grouped boxplot](https://seaborn.pydata.org/examples/grouped_boxplot.html) - [Grouped violinplot](https://seaborn.pydata.org/examples/grouped_violinplots.html) -...
I want this feature :+1:
@jbrockmendel I checked the performance degradation by accepting `Mapping`. The asv benchmark said `BENCHMARKS NOT SIGNIFICANTLY CHANGED`. See https://github.com/mrkn/pandas/pull/1 for more details and the patch I applied. Note that I...
I made a pull-request to propose introduce Mapping support in DataFrame construction https://github.com/pandas-dev/pandas/pull/58814.
@MilesCranmer Regarding `__getitem__`, the error in this method is not due to checking for `list`. The real cause is that `juliacall.VectorValue` is callable. The traceback indicating that the error occurred...
I guess the following change, skipping the call to the object if an error occurs, could be acceptable for improving pandas's interoperability with other libraries. ```diff diff --git a/pandas/core/common.py b/pandas/core/common.py...
@Drvi What do you think about this feature?
@Ochibobo I love this feature. In addition, what do you think about adding a new boolean option called `julia_mutalbe_struct` to specify this flag in the option directive, as shown below?...
@alezummo Oh, I’m sorry for missing this important contribution! I’ll check and merge this if there is no problem.
As you can see in [the document](https://juliapy.github.io/PythonCall.jl/stable/conversion-to-python/#jl2py-conversion), `AbstractArray` and `AbstractDict` are implicitly converted to wrapper objects on the Python call. In the first case, you should use `pydict` function to...