14,399 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Tooling
0
votes
1
replies
37
views
Real-time interactive plotting options
I have a C++ data processing program. I want to view a live plot of a stream of data that is being produced in the program, for debugging purposes. I'm not looking for a production-ready plotting ...
3
votes
1
answer
72
views
Facet breaks either sjPlot or geom_point
I am trying to produce with faceted sjPlot lines, and geom_points. mtcars data supplied as an example.
fit <- lm(mpg ~ cyl * hp * am, data = mtcars)
I want to have slopes of mpg by hp for each cyl,...
1
vote
1
answer
222
views
Keras: only display NN-architecture without model memory allocation
My goal is to use Keras to visualise the architecture of the model. No training, no inference.
For example if I just want to visualise the graph of the network of the classic VGG16-model with
model = ...
0
votes
0
answers
33
views
dynamic animation in paraview
I need to animate the movement of a cylinder in space. I have the x, y, and z coordinates as a function of time in a CSV file. Since it's very large, I can't create the animation manually. Is there a ...
1
vote
1
answer
62
views
LightningChart Python — legend entries overlap
I'm trying to use LightningChart Python v2.0.1 to display a line chart with multiple trends and outlier points, but for some reason the legend entries overlap each other.
I'm following guidance from ...
1
vote
0
answers
174
views
What does np.ones_like represent in a quiver plot of a differential equation?
I found some similar questions about quiver plots and direction fields, but I’m still confused about the meaning of these two lines in many examples:
What do dx = np.ones_like(f) and dy = f mean in a ...
3
votes
1
answer
121
views
How to add a transparent reference plane to 3D persp() plot without covering the surface beneath it?
I am trying to add a horizontal reference plane to a 3D surface plot using R's persp() function, but the plane acts as an opaque layer that cover the surface beneath it.
I want the plane to be ...
2
votes
1
answer
101
views
How to make a half-circle, semi circle,hemisphere diagram start on the the x-axis and attach correct labels to the chart
I have a semi circle plot that is displaying this data (named data_extract) :
Option Count Perc Fract
Excellent 8 73 .73
Good 1 9 ...
3
votes
1
answer
99
views
PyVista axis labels failing to show with show_bounds()
I found while visualizing a dataset that subplots sometimes fail to show bounds/axis titles under the conditions I'm plotting in. Minimal reproducible code is:
import pyvista as pv
mesh = pv....
2
votes
1
answer
79
views
Adjusting secondary y-values
I'm having trouble fixing my secondary y-values. I have a context plot showing my inputs and a results plot showing the outputs. But no matter what I do, the values on my secondary y-axis don't align ...
2
votes
1
answer
60
views
How to show currently pointed series values in LightningChart JS legend
I am using LightningChart JS library (https://www.npmjs.com/package/@lightningchart/lcjs) to display several line trends with scrolling time window. The data is coming over from websocket in real-time....
1
vote
1
answer
82
views
Plotly R: Annotations showing fixed X values on hover despite recalculating closest points across subplots
I'm working with a Plotly figure in R that has 3 subplots sharing the same Y-axis (using subplot() with shareY = TRUE). I've implemented custom hover behavior using onRender() that:
Draws a ...
0
votes
0
answers
20
views
How to visualize a graph with nodes and edges in Zeppelin
I'm trying to visualize a graph with nodes and edges on a Zeppelin notebook, but it doesn't work.
I was following the official document for %network display https://zeppelin.apache.org/docs/0.12.0/...
0
votes
1
answer
51
views
Can I flip the axes in a sjPlot::plot_model(type = "est") plot?
I have a logistic regression model. The outcome is whether individuals voted for a certain party at time t. We have filtered the data so that only observations remain which have voted for this party ...
0
votes
0
answers
38
views
How to prevent jumpback on user input in deneb vega gantt chart?
I am trying to create a Vega Gantt Chart using the template from David Bacci - Deneb-Showcase.
In my original dataset I am taking the data from sharepoint and importing it into deneb visual. I did ...