normanius
normanius
[kdeplot()](https://seaborn.pydata.org/generated/seaborn.kdeplot.html) offers an argument fill. It would be nice to offer this argument to lineplot() as well. ```python sns.lineplot( data=data, x="x", y="y", hue="category", fill=True, palette="crest", alpha=.5, linewidth=0 ) ``` ...
Seaborn is capable of producing very neat plots out of the box. Nevertheless, "post-production" editing of the resulting plots is often required to improve readability, add information, or match the...
I was in dire need for statistical annotations and successfully used your library. Thanks a lot for your work, it generally worked great. Let me still suggest a couple of...
### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of...
Hi Yngve Have you ever examined how this package's functionality relates to similar implementations in R ([grplasso](https://cran.r-project.org/web/packages/grplasso/index.html), [gglasso](https://cran.r-project.org/web/packages/gglasso/index.html)? Below, I'm sharing some code with you that I've created recently. Inspired...
Hi When importing meshlib, im getting a linking problem. Any idea? ```python import meshlib.mrmeshpy as mr # ImportError: dlopen(/opt/pyenv/versions/3.10.5/lib/python3.10/site-packages/meshlib/mrmeshpy.so, 0x0002): Symbol not found: (_mkfifoat) # Referenced from: '/opt/pyenv/versions/3.10.5/lib/python3.10/site-packages/meshlib/.dylibs/Python' # Expected...
I would like to forward this report of a problem related to the TestPyPI infrastructure: pypa/pip#9242 PEP517-style package installation via the TestPyPI infrastructure fails because (the wording might be wrong)...
# Feature Request 🚀 A beautiful feature of Thonny is, that if one prints numeric data to stdout in a structured manner, Thonny creates a live plot of the data...