asmaier
asmaier
Horizontal bar charts are essential, see https://www.data-to-viz.com/caveat/hard_label.html Please make this ticket a priority.
I think there is a misunderstanding. Robustness in statistics is not a relative term. There is a whole field called robust statistics. > Robust statistics seek to provide methods that...
Using Python 3.12.3 on Mac OS 14.1.1 with Apple M3 Pro I get the following results from the script by @nschloe: ``` math.fsum() -0.377392919181026 0.0 sum(): -0.377392919181026 0.0 np.sum(): -0.3828125...
I believe this happens when you call `pipenv --rm` while you are still inside `pipenv shell`. This will mess up your `PATH` variable. So don't do this: ``` pipenv shell...
Try `./docker-wine --arm64 --xvfb wine notepad`.
Thank you for the quick response. This feature would be really interesting for my employer, because they have many Excel sheets with these dropdown lists.
Wow, thank you very much!
Very valid questions. Let me try to remember, because its been a while since I worked with TFT. 1. I believe setting `np.random.seed` somewhere in the code will actually fix...
If you are using Python and pandas you can use [wrap()](https://pandas.pydata.org/docs/reference/api/pandas.Series.str.wrap.html) to wrap long text labels. Here is some example code: ``` import pandas as pd import plotly.express as px...
Since I don't have any x86_64 hardware I created a test VM with x86 architecture on Google Cloud. I ran the docker commands and they worked as expected. So it...