Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

70
votes
14answers
28k views

Good Java graph algorithm library? [closed]

Has anyone had good experiences with any Java libraries for Graph algorithms. I've tried JGraph and found it ok, and there are a lot of different ones in google. Are there any that people are actually ...
28
votes
22answers
5k views

Beautiful charting/graphing/scientific plotting

Are there any open-source charting libraries (at this point, I don't care what language/platform it's available for) that can produce "really, really, ridiculously good looking" plots, preferably with ...
23
votes
2answers
529 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 ...
17
votes
4answers
6k views

gnuplot vs Matplotlib

I've started on a project graphing Tomcat logs using gnuplot-py, specifically correlating particular requests with memory allocation and garbage collection. What is the collective wisdom on ...
11
votes
7answers
2k views

What is a good plotting library for .Net?

I'm writing some data acquisition software and need a gui plotting library that is fast enough to do realtime updated graphs. I've been using Nplot which is pretty good for a free library, but I'm ...
10
votes
3answers
1k views

Good Silverlight 4.0 chart / graph component?

I've been using the Silverlight Toolkit but I'm finding the quality lacking; in particular this memory leak / phantom point bug renders the Chart component completely unusable. Can anyone recommend a ...
8
votes
1answer
5k views

jQuery Flot data/axis labels on top of graph

Is there a way to overlay the x-axis and y-axis numeric labels onto a jQuery Flot graph. So, I want the labels to not be outside, next to the graph, but on top of the graph itself. The following ...
8
votes
12answers
6k 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 ...
7
votes
5answers
10k views

Free C# Grid/Graph component

Can anyone recommend a free grid/graphing component for C#/.NET? I'm having a look at NPlot right now, but so far I'm finding it quite troublesome. EDIT: I particularly need something that plugs ...
5
votes
1answer
683 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, ...
5
votes
2answers
471 views

Reading and graphing data read from huge files

We have pretty large files, the order of 1-1.5 GB combined (mostly log files) with raw data that is easily parseable to a csv, which is subsequently supposed to be graphed to generate a set of graph ...
5
votes
2answers
3k views

How do I control the tick label size in flot

I have a basic bar chart I'm presenting in flot (5 bars, displaying the % per status). $.plot($("#placeholder"), [ { label: 'Failed', data: [[0,10]], bars: { show: true } }, { label: ...
5
votes
3answers
8k views

Any examples of Flot with floating tooltips?

I am currently working on a Flot graph, the API which seems pretty powerful overall, although examples of advanced use are not widely documented. The API suggests there are ways to set hoverable on ...
4
votes
1answer
156 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 ...
4
votes
1answer
82 views

Add statistical information to the bottom of a graph

I am try to add statistical information (min, max, quartile values, mean, median etc) regarding a given distribution to the bottom a graph (histogram, time series plot) in R. I know the stats can be ...
4
votes
2answers
704 views

javascript graphing library

I'm looking for a nice graphing library for JavaScript that can handle the following types of graphs: Line Graphs Histograms Scatterplots Motion Charts I've tried Google's Chart Tools but they ...
4
votes
2answers
395 views

Polar contour plot in Matplotlib

I have a set of data that I want to use to produce a contour plot in polar co-ordinates using Matplotlib. My data is the following: theta - 1D array of angle values radius - 1D array of radius ...
4
votes
1answer
451 views

Matplotlib - Move X-Axis label downwards, but not X-Axis Ticks

Nb: You may need to open the PNGs below directly - Right Click on the image, then View Image (in FF), or Open image in new tab (Chrome). The image resize done by SO has rendered them nigh ...
4
votes
1answer
2k views

grouped bar graph

I have the following data: bin groupname total_dist 0 rowA 377 0 rowA 306.6 0 rowB 2.1 0 rowB 110.6 1 rowA 918.1 1 rowA 463.2 1 rowB 798.2 1 rowB 1196 2 ...
4
votes
3answers
4k views

Creating Graphs on an iPad/iPhone

I was wondering if anyone knew of a simple way to implement graphing in an iPhone/iPad application. I've spent quite a bit of time googling and can't seem to find any sort of a solution. Maybe I'm ...
4
votes
5answers
2k views

What graphing packages/APIs exist for Perl?

I'm doing some research on online Graphing packages for different languages and would like to know what current up-to-date graphing packages there are for Perl which are worth investigating Minimum ...
3
votes
2answers
79 views

Exporting plot with full data or saving as a script

I'm using python with matplotlib to create plots out of data, an i'd like to save this plots on a pdf file (but i could use also a more specific format). I'm using basically this instructions: ...
3
votes
2answers
229 views

how would I implement realtime graphing in Silverlight/WP7?

I'm trying to implement realtime graphing of data in my WP7 app. Can someone point me in the right direction on how to go about doing this? To clarify, by real-time I mean a graph that updates every ...
3
votes
1answer
799 views

Draw square with polar coordinates

I have a square, where the closest points are 1 unit away from the center. See my ascii diagram below: +-----------+ | | | x | |-----+ | | | | | ...
3
votes
4answers
1k views

Why is cosine used to calculate the x values and sine the y values for an arc?

I'm trying to understand the math on this raphael.js demo: http://raphaeljs.com/pie.js Checkout the sector method: function sector(cx, cy, r, startAngle, endAngle, params) { var x1 = cx + r * ...
3
votes
2answers
193 views

Mapping Pixels to Data

I've written some basic graphing software in Clojure/Java using drawLine() on the graphics context of a modified JPanel. The plotting itself is working nicely, but I've come to an impasse while trying ...
3
votes
3answers
653 views

GPL-compatable graphing library for Android

In a similar approach to this question, I am looking for a way to plot data points on to a view in Android. Preferably, a library which will do this for arbitrary-ranged input, as well as allow ...
3
votes
2answers
692 views

Cocoa: create graphs

Is there a framework out there that will allow me to create simple bar and line graphs?
3
votes
7answers
2k views

Free Chart Libraries for PHP

I'm looking for a Free chart drawing library/service that allows me to make things like line, bar, or pie graphs. I know there are some ones like Fusion Charts, but most of those cost money to use. I ...
3
votes
3answers
792 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 ...
3
votes
2answers
1k views

Help using Flotilla and Ruby on Rails

I'm new to Rails (and StackOverflow), so I apologize if this is a "dumb" question. I've put together a really simple Rails application. It receives data from another server (via HTTP POSTs). I would ...
3
votes
6answers
1k views

Are there any graph/plotting/anything-like-that libraries for Python 3.0?

As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.
3
votes
3answers
1k views

Time slicing in Oracle/SQL

I have a large-ish Oracle table containing rows representing units of work, with columns for start time and end time in addition to other meta-data. I need to generate usage graphs from this data, ...
2
votes
3answers
70 views

python: (x,y) plot alternative to matplotlib

I've been trying for several hours to download/build/install/use matplotlib and am at my wit's end. I finally got it to build and it runs but doesn't display anything despite calling plt.show(). Is ...
2
votes
1answer
403 views

Combining graphs using Statsd & Graphite

In Statsd client, how do I combine two graphs to show it as a single one? Like this?
2
votes
1answer
356 views

Android real time graph adjustments user touch screen

Is there any existing graphing library for android that will allow me to draw a line with an adjustable amount of segments that can be touched and dragged in real time? I currently have a working ...
2
votes
1answer
209 views

3d coordinate graphing

how do I plot 3d coordinates in mathematica? I am trying to plot 3d points using mathematica. I want to view what they look like after I am done too. so far this is what I have done... I have ...
2
votes
3answers
321 views

c++/c 3rd party charting / graphing tools?

Hello I was wondering if anyone has had experience using or heard of any good 3rd party graphing tools. I need it to do real time line graphs with multiple inputs and maybe some more complex graphs as ...
2
votes
2answers
388 views

port JUNG into GWT

there is a very good java graphing library JUNG I wonder if there exists any GWT library that does what JUNG do ? i'm aware there exist a commercial Javascript graphing library mxGraph. But mxGraph ...
2
votes
1answer
549 views

Python: mplot3d, graphing a solid

I'm trying to graph a wireframe solid of revolution. I'm following the example for a sphere here but I'm a bit at a loss. I've simplified everything down, but am now stuck on an error. I'm also ...
2
votes
2answers
219 views

What algorithm should I use to zoom a graph or map smoothly?

I have a graph, generated by a function, and it zooms itself in and out automatically, depending on the value of the function. I already have the graphing tools and I can display any x,y,width,height ...
2
votes
1answer
129 views

How do I change the stepping of y-axis values in Flot?

I have a graph of memory use over time which looks like: I set the y-axis: { max:n } value n to 1024 (which means 1024MB of RAM). How do I get Flot to change the y-axis labels so they display: ...
2
votes
2answers
239 views

Generating and then using a taylor polynomial in C#

I've written a simple graphing implementation in C#, and I can graph things by comparing each pixel to the position on the graph it represents and plugging that position into the function I have to ...
2
votes
2answers
509 views

R Programming: Merging two variables to create frequency table

I have another newbie question; lets say i have a set of numbers graph_val <- c(4,2,3,4,1,1,9) and i need to create a frequency table of them against this scale 1 2 ...
2
votes
2answers
1k views

Using errorbar() with semilogy() in MATLAB?

I'd like to plot data x & y with errorbars, ebar, and its fit, yfitted, on a semilog plot. This doesn't seem to work: figure; hold on; errorbar(x,y,ebar); semilogy(x,yfitted); Instead of ...
2
votes
2answers
457 views

Color specifiy area of background of graph depending on condition

I have a bargraph (2D) and I want to make the background red for parts where another vector has a value > 1 i.e. example: graph = [2 3 5 4 9 1 7] color = [0 2 2 1 0 1 2] so the barplot will show ...
2
votes
2answers
1k views

What is a good Javascript graphing library to use with GWT application?

Do you have any suggestions of graphing libraries to use with a GWT project? I need to graph a set of data points and several lines. Also some shading of the area under a line. I am open to ...
2
votes
2answers
785 views

Putting newline in matplotlib label with TeX in Python?

How can I add a newline to a plot's label (e.g. xlabel or ylabel) in Matplotlib? For example, plt.bar([1, 2], [4, 5]) plt.xlabel("My x label") plt.ylabel(r"My long label with $\Sigma_{C}$ math \n ...
2
votes
3answers
741 views

Generating a graph with multiple (sets of multiple sets of multiple) X-axis data sets

I am looking for a way to generate a graph with multiple sets of data on the X-axis, each of which is divided into multiple sets of multiple sets. I basically want to take this graph and place ...
2
votes
2answers
202 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 ...

1 2 3