Questions tagged [dashboard]

A dashboard is a user interface that organizes and presents information in a way that is easy to read to the user of a website. A dashboard typically indicates items which require urgent actions at the top of the page, moving into less important statistics at the bottom.

See Dashboard (web administration) on Wikipedia.

3042 questions
3
votes
2 answers

Is it possible to upload a csv file in Dash and also store it as a pandas DataFrame?

I am developing a dashboard in Dash with Python and in one of the core components I am trying to upload a csv file and display it in a datatable format (see below). That works well (see picture), I followed this example:…
StefaaanP
  • 47
  • 1
  • 4
3
votes
1 answer

How to embed a python dash app to a HTML webpage

Am looking for an example where people have tried embedding Dash app to an existing HTML/CS without letting the Dash app running. Ideally, the dash app should be triggered from within the HTML page. Something better than…
3
votes
1 answer

What's the role of "suppress_callback_exceptions" in dash Python?

What's the differene between writing this: app = dash.Dash(__name__, suppress_callback_exceptions=True, meta_tags=[{'name': 'viewport', 'content': 'width=device-width, initial-scale=1.0'}] …
wageeh
  • 13
  • 1
  • 5
  • 18
3
votes
1 answer

plotly dash - generate image with plotly, safe it local and display it with plotly dash

I generate a lot of images with plotly (express) and save them as png in a local directory. I would like to create a dashboard with plotly dash. The images I've generated have a lot of dependencies: that's the reason I don't want to include the code…
Alex
  • 999
  • 1
  • 14
  • 31
3
votes
1 answer

Deploying AWS Cloudwatch dashboards with the CDK: how do I hide metrics

I have a custom metric that I push updates to in my code. In the CDK, I have created a derived metric from this custom metric. I would like the derived metric to show up in the dashboard but the original metric to be hidden. How can I achieve…
StevieB
  • 982
  • 7
  • 15
3
votes
1 answer

Inform user of invalid input in Dash

I have created a dashboard using dash. It has an input box in which the user enters some data. If the data is found in the attached dataframe then a few graphs are shown. But if the input the user entered is not found in the dataframe then nothing…
Aryagm
  • 530
  • 1
  • 7
  • 18
3
votes
1 answer

Amazon QuickSight embedded dashboard - how to cache user session in my webapp (billing and timing concern)

I have embedded Amazon QuickSight dashboard in my web application by using amazon-quicksight-embedding-sdk (followed https://learnquicksight.workshop.aws/en/dashboard-embedding.html). The user session seems to last many hours as mentioned in…
3
votes
1 answer

Is there a way to render spaCy's NER output on a Dash dashboard?

I am trying to incorporate spaCy's NER pre-trained model into my Dash Dashboard. I know Dash currently does not have the ability to render raw html so I am looking for a solution. I have search the online extensively without finding a…
3
votes
0 answers

How to create a vertical line on a certain date at x axis in Spotfire

Hi guys, How to create a vertical line to a certain date on X axis? I found out that we will need to set x axis as continuous scale to enable vertical line option...But this is not what I want. For example, I have attached a screenshot. I manually…
Golden Sun
  • 63
  • 6
3
votes
1 answer

Adding new filter to an existing dashboard on Tableau

I am new with Tableau and am trying as much as possible to use online forums/internet to find my solutions however it seems that I couldn't find my solution for my query. I am trying to add a filter after I would have created a dashboard. I have…
alphasqrd
  • 53
  • 6
3
votes
1 answer

Update plots for multiple plots in Dash

i have a really basic question, mostly to understand how Dash works regarding the graph updating process when a variable changes. I'm just starting building a Dashboard and i'm still not familiar with the full syntax. I have a plot in my layout, a…
Ghost
  • 1,426
  • 5
  • 19
  • 38
3
votes
1 answer

Facebook - Dashboard issues, counter resets after reloading page

I have a strange bug with bookmark counts - if I set/inc. the bookmark count of my app (with dashboard.setCount or .incrementCount), the bookmark count shows up in the users profile after the app name in the bookmarks section. Unfortunately, if the…
Mariusz B.
  • 240
  • 4
  • 15
3
votes
1 answer

rails activerecord statistics/trends/time-series graph data

We are in the process of building dashboards for users where in they can see the trends/time series graphs of various activerecords; take a blogging site as an example. There are posts, each post has many comments and tags. There are 2 kinds of…
so_mv
  • 3,939
  • 5
  • 29
  • 40
3
votes
1 answer

Displaying model summary on dash

I have a trained Keras model and stored it in variable 'model'. When I print model.summary() I get something like a table with column headers Layer (type) Output Shape Param# Connected to How do I display this table in dash? Do…
solo55
  • 71
  • 1
  • 6
3
votes
2 answers

Looker Custom Visualization

I want to make a custom visualization which will add the values of two measure from the first row and display the value .For this I have been using the HelloWorld code provided by looker itself by making just few changes(text in Red).But I am not…