visualization

Tableau - Count Items in a Dimension based on what month they fall into

删除回忆录丶 提交于 2019-12-11 06:03:32
问题 I am a newbie at Tableau (thought I have spent years working in R and Python), seems to be different in the way it handles things or I'm just not thinking the right way. I have a data sources with training data (employees training and the status). The point is to build a dashboard that shows the % of training that is overdue. I have all of the logic for it, but I am stuck on something. I have a calculated field to show me the total training due, then when I put that in a table, with a filter

How to visualize effect of running kmeans algorithm in SPSS?

别说谁变了你拦得住时间么 提交于 2019-12-11 04:39:10
问题 How to visualize effect of runnng kmeans algoritm in SPSS ? I really don't see there any additional graphical options, but I think I've seen some visualizations of kmeans results made in SPSS, which seemed dedicated to kmeans procedure. I would like to visualize values of centers of clusters. 回答1: You might be interested in the cluster silhouette plots available from the STATS CLUS SIL extension command for any clustering method. Requires the Python Essentials available from the SPSS

Android webview not rendering correctly

房东的猫 提交于 2019-12-11 03:49:31
问题 I have been having a strange error when visualizing some pages with a webview. I have found this problem when using a Samsung Tablet model SGH - I957 running Honeycomb 3.1 (On previous versions of android and other devices, I haven't seen this problem). The problem happens when visualizing pages which have input fields (Username or password). When pressing several times one of these inputfields, the page turns to black, leaving just the inputfield 'correctly' visualized. But when trying to

Starting an edge from within a node

此生再无相见时 提交于 2019-12-11 03:40:06
问题 digraph foo { a [label="<first> A | <rest> rest", shape=record]; b [label="<first> B | <rest> rest", shape=record]; a:rest -> b [label="foo", arrowtail=dot, dir=both]; } I would like to start the tail of the edge (a to b) from within a:rest (ideally in the center), is this possible? I am trying to draw linked lists using box and pointer like notation. 回答1: Yes, this is possible. The attribute to use is called tailclip: If true, the tail of an edge is clipped to the boundary of the tail node;

Can we add shadows to (dashed) lines in R (ggplot2)?

旧时模样 提交于 2019-12-11 02:26:10
问题 I was asked to add shadows to a dashed-line in R. It would be similar to this image I found on-line, except it is for non-solid lines: I did not find any specific control/package for this purpose. If it was a solid line that I needed a shadow for, I would have simulated the shadow using another line with different opacity and thickness. But it seems for the non-solid lines (dashed, dotted, etc) this workaround won't work, since their gaps won't match as you change the thickness. Any ideas?

Plot 3D Grid Data as Heat Map using gnuplot

亡梦爱人 提交于 2019-12-11 02:07:11
问题 Assume we have a 5x4x3 3D grid, where each cell has a value: 0.5523 0.0495 0.1465 0.5386 0.6299 0.4896 0.1891 0.6952 0.0320 0.1925 0.0427 0.4991 0.6147 0.1231 0.6352 0.5358 0.3624 0.2055 0.2819 0.4452 0.1239 0.2085 0.9479 0.6210 0.4904 0.5650 0.0821 0.5737 0.8530 0.6403 0.1057 0.0521 0.8739 0.4170 0.1420 0.9312 0.2703 0.2060 0.1665 0.7287 0.7378 0.8589 0.1339 0.3329 0.0634 0.7856 0.0309 0.4671 0.8604 0.5134 0.9391 0.6482 0.9344 0.1776 0.3013 0.0252 0.9844 0.3986 0.2955 0.8422 How can I

How to draw 2 google charts on same html

北城余情 提交于 2019-12-11 01:48:26
问题 i am trying the below code but it is displaying the chart only for first one. Can you please where i am going wrong. I tried to do many changes but still no luck. i am only getting single chart as shown in below photo: enter code here <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> google.charts.load('current', { callback: function () { drawChart() window.addEventListener('resize', drawChart, false) }, packages:[

D3 nodes and links from JSON with nested arrays of children

≯℡__Kan透↙ 提交于 2019-12-10 23:58:18
问题 I've got a JSON file that looks like this: { Object: { children: Array[4] ... Object: { children: Array[1] Object: { children: Array[3] ... }, Object: { children: Array[1] ... }, ... } ... } The array is a bunch of objects that have arrays of children that contain arrays of children going a few levels deep. My problem is when I try to turn this into a set of nodes and links for use in a d3 force layout, I can't get it to display properly. I've tried using array.map or forEach to recursively

How would you display/layout Data-Flow between Enterprise Applications?

喜欢而已 提交于 2019-12-10 23:56:31
问题 My employer is a large Swiss Telco. We have many Systems used to transfer data for different tasks, e.g. Performance Management, Fault Management, Configuration Management etc. In order explain to "Management" (pointy haired, and other) how these systems interact, I collected information about data flow/formats/protocols into a "database" ( of the comma delimited persuason) and then generated code for Graphviz (http://www.graphviz.org/) and Yed (http://www.yworks.com/en/products_yed_about

How can I show partially colored text in Matlab?

◇◆丶佛笑我妖孽 提交于 2019-12-10 20:57:49
问题 I am trying to color some alphabets in a string based on input alphabet given. Can anyone suggest me how to achieve it ? As I am new to this. Suppose that I have the following string: "AUSTRALIA" INPUT : A OUTPUT : (A in red)'A'USTR(A in red)'A'LI(A in red)'A' 回答1: If you want to show it as text on axes (GUI), use the text command and Latex formatted strings text('string','{\color{red} A}ustralia') You can read about Latex commands here. Alternatively, there is an undocumented functionality