Questions tagged [visualize]

Visualize.js is a javascript library that is used to incorporate Jaspersoft reports inside web applications. It comes bundled with the commercial edition of Jaspersoft,

Using Visualize.js, developers can embed interactive HTML5 visualizations or multi-element reports using standard JavaScript. Developers can quickly and easily call backend JasperReports Server services using REST calls for common functions such as user authentication, data connectivity, repository services and more. Visualize.js can enhance the way data is presented to end users within your web application.

For further information see this link Visualize.js - Getting Started

126 questions
0
votes
0 answers

Adding circles to every state in my d3 US map visualization

I am looking to visualize an extra dimension by using circles that show the amount of page views per state. This is what I have in mind: This is what I have so far: https://github.com/akassem97/usMapViz/blob/master/finalWork/visualization1.html I…
0
votes
1 answer

visualize different binary matrices with different in R

Assume I have two binary matrices in R program. A = matrix(c(1, 1, 1, 1, 0, 0, 0, 0, 0), nrow=3, ncol=3, byrow = TRUE) B = matrix(c(0, 0, 0, 0, 0, 1, 1, 1, 1), nrow=3, ncol=3, byrow = TRUE) Here, A and B are adjacency matrices for two different…
kevin2019
  • 147
  • 1
  • 9
0
votes
2 answers

Make a plot from a csv file with thousand entries in python

I have this code in python, which is working. from matplotlib import style from matplotlib import pylab as plt import numpy as np style.use('ggplot') filename='results.csv' value=[] date=[] import csv with open(filename, 'r') as csvfile: …
Gerasimos
  • 279
  • 2
  • 8
  • 17
0
votes
0 answers

Jasper Reports table column filter data with multiple values through Visualize JS

Last few days I was trying to integrate Jasper Reports to a application using Visualize JS.I have functionality to implement filter the Jasper Report column data by multiple values.The jasper report table has country column. For example I have to…
sampathlk
  • 338
  • 2
  • 17
0
votes
1 answer

How to call a function during window.onbeforeunload

I've read many examples here on how to intercept the window closing and popping up a dialog. I need something different. Before my page is closed or changed I need a function to be called and completed. I've updated my code below to help better…
user179981
  • 167
  • 2
  • 5
  • 11
0
votes
0 answers

How to show total number in same coordinate in R Programming

(update 11/09/2017 question) this is my codes to cluster kmodes in R: library(klaR) setwd("D:/kmodes") data.to.cluster <- read.csv('kmodes.csv', header = TRUE, sep = ';') cluster.results <- kmodes(data.to.cluster[,2:5], 3, iter.max = 10, weighted =…
0
votes
2 answers

Visaulize several .vtk files together in Paraview

I am running some simulations on Matlab and then passing them to Paraview using .vtk files. I would like to see all three .vtk files together in Paraview screen but it seems like I can visualise them only one by one, not together. Anyone knows how…
Noname
  • 355
  • 2
  • 10
0
votes
1 answer

how to get frequency from Recording raw audio?

I want to get frequency from my audio recording simultaneously here is my code: My SoundProcessing .java and Main class public class SoundProcessing extends Activity { private WaveformView mRealtimeWaveformView; private RecordingThread…
Nikoo
  • 1
  • 3
0
votes
0 answers

Javascript skips first visualitation

I have 2 canvasses that visualize values from 2 different labels. I wrote 2 almost the same javascripts and when I run my application. It skips the first visualitation and only shows the second one. Where is my mistake? Here is my html…
Rico Brouwer
  • 81
  • 1
  • 12
0
votes
1 answer

kibana v4 how to visualize metrics meter

I'm using com.codahale.metrics to feed an index metrics in elastic. I have several meters (a type meter in metrics) wich difer with the field name. I would like to have one graph per meter on count field. Actually, I only have a global count of all…
jean-luc T
  • 51
  • 1
  • 7
0
votes
0 answers

Visualize weights of stacked Autoencoder

I trained a stacked Autoencoder. The dimension of weight of first hidden layer is ( SizeHiddenLayer1 x SizeInputLayer) so visualization of this weight is simple because the size of input data and columns of this weight are the same. but the…
Ali
  • 3
  • 2
0
votes
1 answer

java: How to visualize a Family Tree

I would like to visualize a Family Tree and save it as an image (byte[]). The Family Tree is based on a simple model: public class Person { private List children = new ArrayList(); private Person partner; private Person…
Martijn
  • 41
  • 5
0
votes
1 answer

Interactivity on reports lost while using visualize.js

Here is my issue: I am using Jasperserver's visualize.js for integration of reports into my application and this is done inside of an IFrame (reason: js libraries between my application and jasperserver are conflicting). I see that the reports loads…
Mr767267
  • 1,008
  • 2
  • 11
  • 18
0
votes
1 answer

visualisation of recursion in a for loop in Python

I'm having trouble drawing a recursion tree for the following permutation code: def permut(array): if len(array) == 1: return [array] res = [] for permutation in permut(array[1:]): print permutation, array for i…
Dora
  • 1,163
  • 2
  • 9
  • 11
0
votes
2 answers

JasperSoft ReportServer - Visualize.js integration issues

I am testing out the visualize.js integration from jasper reportserver pro edition. It does not work because my application also has its jquery/require modules and visualize.js also tries to load it's own version of jquery/require modules. The…
Mr767267
  • 1,008
  • 2
  • 11
  • 18
1 2 3
8 9