Tagged Questions
0
votes
0answers
166 views
Open-source surface plot with lighting model?
I have a three-dimensional surface I would like to plot with a lighting model, i.e., I want it to look like a surface that is being viewed from a certain point of view, with a light source ...
0
votes
0answers
310 views
Change Qwt SpectrogramData look?
I've been given a chart (below) and asked if I could change the look of it. The data behind this chart only has X values of 1,3,4,5 - whole numbers only. However, from the chart it looks like it ...
36
votes
2answers
4k views
R + ggplot : Time series with events
I'm an R/ggplot newbie. I would like to create a geom_line plot of a continuous variable time series and then add a layer composed of events. The continuous variable and its timestamps is stored in ...
5
votes
1answer
1k views
creating confidence area for normally distributed scatterplot in ggplot2 and R
I have some data, say (in reality, I have a large amount of data):
x y
0.1 0.267
0.2 0.254
0.3 0.182
0.4 0.173
0.5 0.121
0.6 0.089
0.7 0.070
0.8 0.056
0.9 0.031
This data roughly follows a trend ...
1
vote
1answer
2k views
Setting axis intervals in ggplot
I have searched for this and can't believe I can't find it. Perhaps I've been asking the wrong question.
I have a set of data laid out in a histogram that has a xlim of $2,000,000. I am trying to set ...
16
votes
1answer
7k views
Matplotlib - label each bin
I'm currently using Matplotlib to create a histogram:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1,)
n, bins, ...
2
votes
1answer
148 views
Generic graphing and charting solutions
I'm looking for a generic charting solution, ideally not a hosted one that provides the following features:
Charting a tuple of values where the values are:
1) A service identifier (e.g. CPU usage)
2) ...
2
votes
2answers
356 views
Tools or programming libraries to visualize custom logic
I am looking for tools to aid in the visualization of custom business logic used to perform document generation. The logic is expressed as an object-oriented model consisting of a graph of decision ...
13
votes
13answers
14k views
What can I use for real-time plotting/graphing in C++?
I am looking for a C++ library or component which would ideally be cross-platform, but will first only be needed for Win32.
The requirements are:
one to 10 updates per second
good documentation and ...
3
votes
3answers
1k views
What is a good tool for graphing sub-millisecond timelines?
I'm trying to produce a timeline for my real-time embedded code.
I need to show all the interrupts, what triggers them, when they are serviced, how long they execute, etc. I have done the profiling ...