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
1 answer

Jasper Server "fusion component not supported" rendering a PDF

I have several reports which have been integrated into a dashboard web app. On several of the reports we use the "Widgets Pro" angular gauge component. This renders and displays fine with visualize.js. The user would like to be able to export…
slambeth
  • 887
  • 5
  • 17
0
votes
2 answers

Why visualize DICOM file with pyDICOM and matplotlib return an greenish colour image

I have a DICOM file with an image that I would like to visualize. The image looks fine when I opened with DICOM software. However, when I tried to visualize the image in python with pyDICOM using the following code: ds =…
Nugliar
  • 17
  • 3
0
votes
0 answers

How can I visualize Random Forest Model in Python?

I developed a Random Forest Classifier in Python. Also, I used GridSearch method. Now, how can I visualize these tree ? # RandomForest RFC = RandomForestClassifier() param_grid = { "max_depth": [4,5,7,8,10], …
0
votes
0 answers

problems with Scatterplot

enter image description hereI'm trying to visualize correlation between two columns in my dataset. I tried to use plot(), scatterplot, but the result is not a readable graph. For example I used this…
0
votes
1 answer

2D slope display Python

The question is the following: I have to create a matrix that has values corresponding to the slope inclination. angles between 34 degrees and 28 degrees. I would need to create the matrix and display it in a plot.
Steren
  • 127
  • 2
  • 10
0
votes
0 answers

Django: How to graph/visualize the variable average in a scatter plot?

was wondering how do I visualize this data in a scatter plot way so it appears in the same Django template page below so that the average price is in the middle as a dot showing the price and the other prices in the list are other smaller dots…
Niko
  • 25
  • 6
0
votes
1 answer

How can I fix data frame has no attribute plot

dd=df.select(df.Color,df.ListPrice.cast("float")) colordf = dd[['Color','ListPrice']] colordfgroup = colordf.groupby('Color').mean('ListPrice') colordfgroup.show() my_plot = colordfgroup.plot(kind='bar') It shows me that DataFrame has no attribute…
0
votes
1 answer

How to visualize graph with network in zeppelin?

I want to visualize my graph with %network in zeppelin. I've defined nodes and edges by reading from JSON file. val nodes = spark.read.option("multiline","true").json("/opt/nodes.json") val edges =…
0
votes
1 answer

Is it possible to create a moving model of the earth (e.g. shockwaves of earthquake?)

Total nooby. If there is 3D data with a high enough resolution, would it be possible to create a moving model and show shockwaves over time? Regards, Jaco
0
votes
1 answer

Can tensorboard display an interactive plot or 3D plot

I have to visualize the interactive 3D plot on tensorboard. Can the tensorboard visualize this or is there any way to display this on tensorboard. Thank you.
0
votes
1 answer

how visualize multi channel of feature from PyTorch?

I'm almost newbie at PyTorch One of my output size from conv is [1, 25, 8, 32] (25=channel, 8=height, 32=width) I can use squeeze and make it to [25, 8, 32]. But I'm confused with 25 channel. When I want to visualize sum of 25 channel and make to…
yKim
  • 63
  • 4
0
votes
0 answers

Hide column filtering or formatting buttons

Is it possible to hide any of the individual Jive buttons in Visualize.js? I.e. column filtering or formatting? I looked at the API, and it doesn't appear to be documented. As a worst case approach, I'm investigating hiding the buttons via CSS.
Hoppe
  • 6,508
  • 17
  • 60
  • 114
0
votes
1 answer

POSTMAN - Visalize custom made JSON file

I am using postman and would like to visualize the response using the visualizer plugin. The problem is that I am running a GET request on an URL and afterwards in "tests", I am running x number of more requests based on the information received in…
lenaro
  • 3
  • 1
  • 2
0
votes
0 answers

How to visualize a complicated graph in python?

I have a very complicated graph that includes lots of nodes and edges. For better understanding, I want to visualize the graph. I worked with lots of libraries and I didn't get what I want. This article was great, but I couldn't define the pos…
0
votes
1 answer

Error in sysic function in MATLAB for defining control system blocks

I want to synthesize a H_infinity control system and I want to define it in the form of general control configuration like this form. at first I define relations of blocks with each other: s=tf('s'); w_1=makeweight(100,10,0.5); % Weight for…
Ben25
  • 131
  • 1
  • 7
1 2 3
8 9