Skip to main content

All Questions

Tagged with or
1 vote
1 answer
152 views

I'm trying to make an interactive wordcloud in Dash. Is it even possible? Also, I'm trying to make two different wordclouds, with each click being a different wordcloud: 1 click -> shows one ...
Rasmus Svendsen's user avatar
1 vote
2 answers
175 views

I'm creating a barplot in plotly where I want to add a vertical line. In the plot we initially only show one selected item from the legend. Now I want to have the vertical be the maximum height of the ...
Quinten's user avatar
  • 42.9k
1 vote
1 answer
91 views

When creating a line plot and filling between two lines using the fill = "tonexty" option, the legend order is reversed by default. How do you stop this happening? This problem has been ...
Rainfall.NZ's user avatar
0 votes
0 answers
78 views

I’m building a Dash app with dcc.Tabs. The tab content is rendered via a “router” callback that returns a layout object. Inside that layout I have a dash_table.DataTable that should be filled by a ...
Francisco Augusto Varela Aguir's user avatar
1 vote
0 answers
68 views

I want the hover labels to appear ordered by the y axis value at each x axis point. import plotly_express as px fig = px.line( [ dict(price=2, year=2023, product='A'), dict(price=3,...
Clodoaldo Neto's user avatar
2 votes
1 answer
64 views

import plotly.graph_objects as go import solara as sol @sol.component def Plot(): ui_state = UIState() analyasis_view = AnalysisView() print("Rendering Plot Component") print(...
Simon Dierickx's user avatar
0 votes
1 answer
70 views

I have build a simple application with two pages (a multi-page Dash app) which I am running locally using Gunicorn with two workers and four threads. It's a simple dashboard application. When I ...
Haris Qureshi's user avatar
0 votes
0 answers
84 views

I want the dash.dcc.Dropdown to look like the dbc.DropdownMenu in the bootstrap site: This is my sample code: # -*- coding: utf-8 -*- from dash import Dash, dcc, html import dash_bootstrap_components ...
Clodoaldo Neto's user avatar
-1 votes
1 answer
59 views

In a Plotly Dash application I'm trying to use the horizontal space optimaly. There are four columns in the first row. Right now this is what I have: from dash import Dash, dcc, html, Input, Output, ...
Clodoaldo Neto's user avatar
2 votes
1 answer
124 views

I'm trying to use the R packages crosstalk and plotly (along with tidyverse packages) to create a panels that displays multiple data sets together. There's two data frames that I want to put into one ...
cgmil's user avatar
  • 460
1 vote
1 answer
49 views

I am trying to have my subplots be grouped, rather than stacked. However, fig.update_layout({"barmode": "group"}) does not seem to work. My df as here: import pandas as pd import ...
plotmaster473's user avatar
0 votes
0 answers
46 views

I've seen this issue come up in other pages but none of their solutions worked for me. import plotly.express as px import geopandas as gpd import cartopy.crs as ccrs regions = gpd.read_file("...
thefrollickingnerd's user avatar
2 votes
1 answer
76 views

I am working on a dashboard using Shiny for Python and Plotly Express. I am trying to create a Gantt chart (using px.timeline) to visualize the operating periods of different boilers (ON/OFF states). ...
Juan Siécola's user avatar
1 vote
2 answers
52 views

I want to create line charts with plotly, my X axis is a year, y a value. Sometimes, the data is incomplete, i.e., some curves will have years missing or will start in different years than others. It ...
hanno's user avatar
  • 98
0 votes
1 answer
86 views

def prepare_dataframe(df): # Map original CSV column names to internal aliases for easier access df.rename(columns={ 'Bomba Calor - Temperatura de Aire (°C)': 'temp_aire', '...
Juan Siécola's user avatar

15 30 50 per page
1
2 3 4 5
1044