Omar AlSuwaidi
Omar AlSuwaidi
I'm quite new to Panel and I would really like to start using it since it supports a wide range of Python plotting libraries and is excellent for dashboarding even...
Panel's [Switch ](https://panel.holoviz.org/reference/widgets/Switch.html)widget, (unlike streamlit's toggle widget), doesn't contain a `label` parameter which is used to serve as a short label to provide context to the user what this switch...
When creating a Number indicator, for example: ``` pn.indicators.Number( name='Total Sales (-1.5%)', value=round(df_offer['total_revenue'].sum() / 1e6, 2), format='{value}MM AED', **kpi_font, styles=kpi_style | {'background-color': '#800000'} ) ``` I have to add the...
I have this data which represents the sales **decomposition** from high-level to granular, left to right (hence sum over the `index` column should add up to "total_revenue"): ``` data =...
Would love to see [Radar plots](https://en.wikipedia.org/wiki/Radar_chart) being natively supported in the `lets-plot` library to expand the library's richness. I believe it would be a good addition to be able to...
### Check for existing issues - [X] Completed ### Describe the feature While I find the `"use_autoclose": true` feature convenient, I do not want Zed to auto close angle brackets...
When fitting `BKMeans` on some toy data: ``` data = {'Feature1': np.random.randint(0, 10, (50,)), 'Feature2': np.random.randint(0, 10, (50,))} df = pd.DataFrame(data) kmeans = BKMeans(n_clusters=4, random_state=0) kmeans.fit(df) ``` One would expect...
I really love the newly introduced waterfall plot, it's super practical and insightful. However, I faced a couple of issues when trying to customize it into a _funnel_ plot: 1....