问题标签 [visualize]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 排序算法的可视化
我正在尝试使用 d3.js 可视化排序算法,但我有点卡住了。当我尝试通过将其包含在排序循环中来重新绘制图形时。该图仅显示最终值。使用setInterval函数后也发生了同样的事情。我在下面包含了没有所有计时器功能的脚本(不包括 settime 功能)
python - 矩形作为 ete2 中的 NodeStyle 形状
我想在 ete2 中为树状图创建自己的布局。我有非常具体的需要按节点自定义树节点(即每个节点都有不同的样式等。)
是否可以将节点的形状设置为矩形(我发现圆形、方形和球体作为选项)?我想为每个节点手动设置长度和高度。
另外,你有使用ete2的经验吗?它对定制有任何限制吗?它似乎是可视化树木的好工具,但我想创建一些更“特殊”的布局。
提前致谢,
L.
r - 如何可视化 3 维矩阵?
如何可视化 3 维矩阵?
- 第一个维度是 x 坐标 = 不同的大学
- 第二个维度是 y 坐标 = 学科或专业(物理、数学、艺术......)
- 第三维是颜色=不同的年份
- 圆圈大小=相应学科/大学的论文数量
visualization - 使用 Visualize.js 创建报告时图表不可见
我正在使用 Visualize.js 来呈现 jasper 报告,正在获取带有图像的报告,但它没有显示图表。下面给出的是我的代码
我是否需要包含除 Visualize.js 之外的任何 js 来呈现图表。请帮我。提前致谢
jasperserver - JasperReport Server Visualize.js - 嵌入报表设计器
我正在使用 Visualize.js 和 JasperReports Server Pro 版本。使用可视化它非常直接地嵌入已经设计并存储在存储库中的报告。
但是有没有办法使用 Visualize.js 嵌入报表设计器组件?
谢谢!
jasperserver - JasperSoft ReportServer - Visualize.js 集成问题
我正在测试来自 jasper reportserver 专业版的 Visualize.js 集成。它不起作用,因为我的应用程序也有它的 jquery/require 模块,并且 visual.js 也尝试加载它自己的 jquery/require 模块版本。覆盖我的框架库会产生许多不确定和不可预测的问题。
有没有办法告诉 jaspersoft 不加载 jquery/require 库?
谢谢!
jasper-reports - Jasper Reports with Visualize.js: call to inputcontrols stalls intermittently?
We have a SaaS application running with an AngularJS front end and Jasper Reports integrated using the Visualize.js framework. We are seeing an issue where after the Jasper server has been running for a while, the call to get the input controls will stall in the browser. The strange thing is that all the other calls proceeding it (auth, resourcessearch, etc.) return just fine. It seems to be only the inputcontrols that stalls. When this happens, we see no errors in the logs, memory & CPU on the Jasper server are fine, etc. To fix the problem, we are generally forced to bounce the Jasper server.
Has anyone experienced this problem? Any advice?
A little more info:
- Jasper Professional version 6.1.1
- Seeing the problem in all supported browsers (IE, Firefox, Chrome)
- Problem happens both with a single user and with concurrent users
- Input controls will sometimes return after 8-10 MINUTES if we wait long enough (with Apache timeout cranked to 15 minutes)
python - Python中for循环中递归的可视化
我无法为以下排列代码绘制递归树:
假设我的数组是“mick”,那么我得到以下排列和数组的打印输出:
k 和 ck
ck 和 ick
kc和ick
伊克和米克
我理解它直到'k'和'ck'(当array ='ck'len(arraw [1:])== 1)但是我们如何在递归中将'ick'作为一个数组?你能想象一下吗?非常感谢任何提示!
ruby - 如何使用 d3.js 可视化 Neo4j 中两个节点之间的关系?
我写了一个密码查询来显示两个电影节点之间的关系:
它在 Neo4j 浏览器中返回这个,这正是我想在 d3.js 中创建的。最终,movieID 将成为参数,因此每对电影的结果都会有所不同。
我一直在关注这里看到的 Neo4j-core Ruby 示例来创建我自己的图表,但我的问题是我不能RETURN
在两个移动之间共用节点,即Tag
/Country
节点。
我应该如何解决这个问题?我应该创建一个查询来返回两部电影,并创建另一个查询来返回它们之间的公共节点吗?我将如何编写后一个查询?我真的很困惑如何想象这种关系......