Pamphile Roy
Pamphile Roy
Seems like when the dashboard is starting in GCP, it needs to be reloaded once to work. This is not the case with the sampling page. Which tells me that...
With 1.3.1, there is now a Guest user and we can update our OAuth custom code to take advantage of the new feature. https://holoviz-dev.github.io/panel/how_to/authentication/guest_users.html
Should we separate the dashboard from SimDec-Python itself? As we discuss adding more capabilities such as a sampler dashboard or a more general SA app, maybe it would make more...
Stacked histogram: https://discourse.holoviz.org/t/stacked-histogram/6205 Boxplot is fine: ```python df_melted = res.bins.melt() df_melted.hvplot(kind="box", y='value', by='variable', c='variable', invert=True, xlabel="variable", ylabel="value", cmap=colors_hex[::-1], legend=False, width=500, height=500, padding=0.4) ```
For now it's still ok/easy enough to QA. Might be a good idea to add a proper testing of the UI as the app grows. There are some tips there...
Initial `value` are sorted. It comes from the underlying JS library. This is supposed to be fixed in Bokeh 3.0, but there are still issues.
I had to do this for a project to change the sampling method. I am not sure about this and maybe we should start thinking about using the new SciPy...
It would be handy to be able access rows of multiple columns when indexing. This would allow to have a familiar interface for NumPy-like users. ```python @omnisci('UDTF(ColumnList, OutputColumn)') def fahrenheit2celsius(inp,...
After moving, CI should also be changed: ```diff - mamba run -n rbc pytest -sv -r A rbc/tests/ -x -k heavyai + mamba run -n rbc pytest -sv -r A...
Linked to #448 If you have a matrix that you want to reduce with `array_api.mean` for instance, it would be great to be able to specify an `axis` like NumPy.