|
I'm using a graph with a <mx:LineSeries> . When I hover over the line it shows the data points as little circular points. How can I get these points to display all of the time?
Started by Shawn Simon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I think what you are looking for is:
showDataTips="true" If you're using <mx:LineSeries> , then set the following property:
itemRenderer="mx.charts.renderers.CircleItemRenderer"
When constructing a LineSeries in ActionScript, then set the itemRenderer... .
|
|
What is the best way to store a large number of data points?
For example temperature values which are measured every minute over lots of locations?
SQL databases with one row per data points doesn't seem very efficient.
Started by Stephan Schmidt on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
We have done work in a power station before, collecting... .
Storing multiple data points to pull out the correct data points you need for a given scenario.
data model and schema to give a better context of the scenario.
|
|
It is obviously possible to hide individual data points in an Excel line chart.
Select a data point. Right click -> Format Data Point... Select Patterns Tab Set Line to None How do you accomplish the same thing in VBA? Intuition tells me there should...
Started by d91-jal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This data point will then not display which means you don't need to try and manipulate object of the Point....
In excel a data point represented by a #N in the graph data.
Be controlled from the vba code as well.
|
Ask your Facebook Friends
|
I am currently developing a piece of software using opencv and qt that plots data points. I need to be able fill in an image from incomplete data. I want to interpolate between the points I have. Can anyone recommend a library or function that could help...
Started by Sam on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Fill in each missing data point with an average over the edge points around....
Are the points missing data, and the x's and o's have data (for a single missing point, this will be the four nearest neighbors).
|
|
I have a series of data points (tuples) in a list with a format like:
points = [(1, 'a'), (2, 'b'), (2, 'a'), (3, 'd'), (4, 'c')]
The first item in each tuple is an integer and they are assured to be sorted. The second value in each tuple is an arbitrary...
Started by Corey Goldberg on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
For value, data in points: if value >= marker + interval: series.append(current_group) current(n) solution:
def split_series(points, interval): series = [] current_group = [] marker = points[0][0_group = [] marker += interval....
|
|
I have two sets of data points that both relate to the same primary axis, but who differ in secondary axis. Is there some way to plot them on top of each other in R using ggplot2?
What I am looking for is basically something that looks like this:
4+ |...
Started by Thomas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Library(lattice) library(grid) # needed for grid.text # data Lines.raw <- "Date Fo Co 6/27/2007 57.1 in a time-series like that, is to norm the two lines of data so that at a particular value of t, often.
|
|
Hi,
I've been puzzling over path rendering for the past couple of days without any real solution.
By path rendering I mean given a set of x,y data points (at varying distance) to draw a dashed line (or in my case a rotated quad) of fixed length at regular...
Started by Rich on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The algorithm would be something like:
Draw quad on the first data point (rotated getting a series....
Lines as shown simply by drawing quads at every data point that is a given distance from the last data point.
|
|
For large n (see below for how to determine what's large enough), it's safe to treat, by the central limit theorem, the distribution of the sample mean as normal (gaussian) but I'd like a procedure that gives a confidence interval for any n . The way ...
Started by dreeves on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
For a smaller number of data points, your a probability and the degrees of freedom (one less than the number of data points):
g(p,df) = sign(2*p-1 is an....
For your data and a large number of data points.
|
|
I have written a chart that displays financial data. Performance was good while I was drawing less than 10.000 points displayed as a connected line using PathGeometry together with PathFigure and LineSegment s. But now I need to display up to 100.000 ...
Started by Hermann on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
With this many data points, it's unlikely data, and the time required increases geometrically (or worse) with the number of data points of data....
Of the data set at a time, culling could be enough on its own.
|
|
Hi, I have an application which receives GPS data from a mobile device as well as receiving co-ordinate data it also provides signal strength from the GSM network. I am trying to plot the points on a map to display areas of good signal strength and areas...
Started by Phill on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It might be possible, not knowing exactly what you have for points, to use X,Y for the location inaccurate....
Admittedly, you'd ideally want to group data points by distance from point to point, and this groups into a graph.
|