dashboard

Bokeh interactive dashboard can not remove lines from plot

本秂侑毒 提交于 2019-12-11 17:29:46
问题 I am working on my first python Bokeh interactive dashboard. Plot default shows lines for group=a and group=b. When check box[1], plot will add lines for group=a1 and group=b1. When uncheck [1], line a1, b1 are supposed to be removed from plot, but they still stay in the plot. Below is my sample data and sample code. It can directly run in your jupyter notebook. Can any one help me out? Thank you very much! import pandas as pd import numpy as np import matplotlib.pylab as plt from bokeh.io

MS Access 2003 - Creating a Dashboard - Return Values to a form?

て烟熏妆下的殇ゞ 提交于 2019-12-11 15:18:33
问题 So this is something that I have never tried, but I think I want to create a Metrics Dashboard in my MS Access database. So I think the first question that I need to ask is how can I return a value to a form? If I ave aggregate queries that are top 10 total sales, how can I specify not only the query that I want the top result to come from, but also the "top/first record" (listing in descending order? should i use a single text box? i figure that making a subform with a datasheet view will

App.get_running_app().root.my_method() - 'NoneType' object has no attribute 'my_method()

跟風遠走 提交于 2019-12-11 15:05:26
问题 I try to call a function on my Screenmanager after a button was pressed. But the call to (App.get_running_app().root.) does not get me an object. The Buttons will not work for me and i do not know why. There seems to be an issue that i do not have a root object, but why. It worked before i tried it with the dashboard. I have tried including methods from the ScreenManager Class which i could not call and call methods out of the Dashboard class, which function. python file: from kivy.uix

Using SAP Dashboards publicly without login prompt

隐身守侯 提交于 2019-12-11 10:49:27
问题 I have built a dashboard using SAP Dashboards and we wish for it to be displayed within the company, on screen. The trouble is that when you export it as a flash file, it wants you to log in so it can run the queries. I'm assuming that there's some way to prevent this and have the dashboard log itself in somehow? It'll be displayed on a TV so don't want to have to hook a keyboard and mouse up to it every few hours to type a password in! Plus we don't want the users knowing the login details

Ajax based Dashboard On LargeData

五迷三道 提交于 2019-12-11 07:49:11
问题 I am working on some sort of CRM application which has huge sales data with all the customer leads etc (ASP.NET 2.0/Ajax) I want to create a dashboard which will have four separate data containers each container will have different sort of data and each container has to update it self after some configured time interval. so I want to update only that part of page not whole page What should I used in the above scenario asp.net updatePanel or jQuery implementation (which technique and why)

Dc.js leaflet marker popup showing fields from input data

流过昼夜 提交于 2019-12-11 07:37:20
问题 I'm a dc.js novice working on a dashboard displaying information on charts and a map. I'm currently unable to display information on the marker popup window besides the default, which seems to be a point's coordinates (geo) and the number of occurrences. Current code is: var facilities = xf.dimension(function(d) { return d.geo; }); var facilitiesGroup = facilities.group().reduceCount(); dc.leafletMarkerChart("#test .map",groupname) .dimension(facilities) .group(facilitiesGroup) .width(540)

Python Bokeh: How to update a Toggle button - defined in the main - in a subroutine

佐手、 提交于 2019-12-11 06:49:05
问题 I have the following simple bokeh example. The start button starts an infinitive while loop in a subroutine, which should stop running as soon as button 3 is pressed or the checkbox is unchecked. Button2 checks the status without the loop which works fine. As button3 and the checkbox cb are defined in the main the subroutine called by button1 does not recognize the change. Is there a way to solve this? I used bokeh version 1.0.1. You can run the example lokally with bokeh serve script.py and

ImageView size for phones and tablets

十年热恋 提交于 2019-12-11 06:46:54
问题 I'm making something like a dashboard for my app. And everything fine except situation with ImageView size for diffrent device's screen inch. It looks fine on phones and devices 7" and less But on devices more than 7" it's looking bad In all cases I used same size of ImageView - 50dp and I have generate MDPI, HDPI, XHDPI, XXHDPI images If I will use dimens I will get blured images because MDPI, HDPI, XHDPI, XXHDPI images will be generated only for 50dp, but not for 100dp <?xml version="1.0"

How to remove repositories that I don't own from GitHub dashboard

霸气de小男生 提交于 2019-12-11 04:14:54
问题 I forked a repo on GitHub then I created a pull request to with my changes and then I changed my mind so I closed the pull request and I deleted the fork I made on the repo. The problem is that the repository(not the fork) is still showing in the Repositories list in the GitHub dashboard (see picture below) See the reeeeeeeeeee.../reeeeeeee... repository is the one that I want to delete from there but I can't. I tried everything. If I go to my profile and click on repositories it isn't there

Widget to control multiple cells for Jupyter Dashboard

夙愿已清 提交于 2019-12-11 03:22:46
问题 I'm trying to build a jupyter dashboard which is going to contains many plots and tables. Ideally, all the plots and table will change accordingly to the same widget value at the same time. I can create a function that will handle the creation of all plot and tables and show them, but then I'll be limiting the layout which is what jupyter dashboard is great for. def create_dashboard(x, y, z): # make first plot using x ... # make second plot using x, y ... # draw table from dataframe using x,