The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

Highstock xAxis Plotband

I am new to Highstock and would like to know how to highlight an x axxis plot band to a chart in highstock. I have crafted a sample at: https://dl.dropboxusercontent.com/u/2509207/PlotBand.html Can ...
0
votes
1answer
26 views

How to add marker to matlab colorbar?

I want to add a tarker/special tick mark by specific values in my matlab colorbars. For example, lets say I have a colorbar scale from -20 to 60 and my critical value is 37.53, how can I add a marker ...
1
vote
0answers
31 views

Figure title (suptitle()) disappears if you specify figure size in Matplotlib

Take, for instance, this code sample: import numpy as np import matplotlib.pyplot as plt f = np.random.random(100) g = np.random.random(100) fig = plt.figure(figsize=(15,15)) fig.suptitle('Long ...
0
votes
0answers
25 views

iPhone iOS how to synchronize network data received from multiple devices?

I have an iPhone server-like app that receives streams of numbers from multiple connected devices using Bonjour. The limitation that I'm facing is that I would like to show all of these numbers on one ...
-1
votes
3answers
35 views

How do I plot 2 points in a graph in a GUI?

I am trying to make a GUI that will plot 2 points in a line graph and draw a line segment from those two points. I cannot find any examples in any of my Java textbooks, and almost every example that ...
0
votes
0answers
39 views

Transforming data to work with d3 draw multiple lines

I have a dataset like this [[[{"2001-1":{"cow":2.64,"dog":2.90,"Lemur":0.0,"Lion":2.77,"Tiger":2.31,"bird":3.21}}]], ...
-1
votes
0answers
16 views

contour plots for iphone and ipad [closed]

Are there any libraries for the iOS to do contour plots. I am creating an app to visualize some of the optimization algorithms like gradient descent. If there aren't any. Please do suggest an ...
0
votes
0answers
32 views

Grouped Bar Graph from Unequal Vectors

I'm trying to create a grouped ("side-by-side") bar graph in R for four vectors of unequal length. Each vector has "scores" for a particular process, and while the vectors are not exactly the same ...
0
votes
0answers
25 views

pChart - Duplicate labels on second series appearing on the left axis

Can someone please help point me in the right direction for what's causing the problem with the attached graph. I am seeing for values for the second Y axis on the left side in addition to values as ...
0
votes
0answers
21 views

graphically display user's credit score

I am trying to graphically display an individual's credit score on a horizontal bar graph. I would like the bar graph to be color coded like the link below shows. The program will then add a vertical ...
0
votes
0answers
31 views

Is it possible to display bar diagram in stack series and render a pie chart using fnordmetric gem?

I am using gem fnordmetric and I tried a lot to display bar diagram in stack series but failed. Is it possible any way to show bar diagram in stack series. Is pi-chart rendering possible? I saw the ...
0
votes
0answers
45 views

Is it possible to rotate axes in 3D with JFreeChart?

Is it possible to angle the axes of a chart in 3D? In particular, I'm working with createBarChart3D. The only configuration options are in the constructor of BarRenderer3D for x & y offsets. Web ...
0
votes
3answers
163 views

d3: multiple lines same graph with varying y domains?

I have data which is all time series, so the x axis of my d3 graph is always time. I need to support having multiple lines on one graph, but the different lines can have vastly different domains for ...
3
votes
3answers
143 views

Calculating the slope of a series of values

I have 2 arrays of equal length. The following function attempts to calculate the slope using these arrays. It returns the average of the slope between each points. For the following data set, I seem ...
0
votes
1answer
71 views

Axis overlapping line in matplotlib

I'm currently trying to draw a series of arbitrary lines on a matplotlib graph. Here is the code I'm using: import matplotlib.pyplot as pyplot def center_origin(axis): '''Center the axis in the ...
0
votes
3answers
125 views

How to plot multipleset data in R? [closed]

Like in the plot found here I would like to display multiple datasets in the same bar graph. My data is essentially "male/female" heights for various countries. I want the country along the x-axis ...
0
votes
1answer
19 views

Highcharts loading all data with xaxis simplified

When I load all my data into a chart the xaxis gets cluttered and unreadable. I have maybe 120 records per hour that with a certain value. Is there a way in highcharts to load all the data I have and ...
0
votes
1answer
52 views

Setting specific zoom levels in d3?

I have a line graph in d3, and we need to implement specific zoom levels, similar to Google maps. I want a mouse wheel zoom in action to snap/transition to the next possible inward zoom level, and a ...
5
votes
1answer
125 views

Plotting animated exchange (plotting directional edges)

I once saw this plot (LINK) on shipping trades. I work with dialogue exchanges and thought it may be interesting to map this sort of exchange using R. This is a larger question but I think it may ...
0
votes
0answers
54 views

Adding data points to a Visual C++ graph

I am trying to get data from Form1 to Form2 and display the data in a graph in Form2. I'm trying to use Visual C++ Express 2010, but I don't know the syntax to add data points to the graph at load ...
1
vote
1answer
42 views

D3 graphing selective portions of data set

I have a large time series data set I need to graph, and am trying to use D3 to do it. I plan to have my graph have the x-axis be time, and allow for movement of the graph in the x direction. I want ...
0
votes
0answers
148 views

Cant change line color in histogram using gnuplot

Im generating histograms using gnuplot which works pretty well, but I can't change the color of the bars (anymore). They just ignore the values I set and use the default values. I'm using this ...
1
vote
1answer
170 views

d3 seems to assume I know the column names of a csv?

I have csv files that are generated, and I am trying to load them into d3 to graph them. The column names are based on the data, so I essentially can't know them in advance. With testing, I am able to ...
0
votes
0answers
64 views

jQuery Datetime select with endtime

My jquery is really bad and just trying to get a project off the ground. I have lots of data for graph that spans weeks and months and should be able to grow more. I want to allow the user to be able ...
3
votes
4answers
190 views

Hiding a series by default in a spider plot

I have a spider plot in using the graphing library of Dojo defined like this: require([ "dojox/charting/Chart", "dojox/charting/themes/Claro", "dojox/charting/plot2d/Spider", ...
0
votes
0answers
45 views

Can't Get Php Graphing to Work

I am trying to get basic php graphing to work. I'm using Ubuntu 12.04, php5, mysql. I did not have gd in phpinfo() so I added it with apt-get. Tried manually adding extensions to php.ini with no ...
1
vote
1answer
607 views

Grouped bar Graph using barplot [duplicate]

Possible Duplicate: How to create grouped barplot with R Species Dbh Height 1 DF 383.7143 254.3036 2 ES 403.3333 280.0000 3 F 372.0000 270.0000 4 FG 381.5000 ...
0
votes
0answers
28 views

How Python plot time-varying time 3-D data extracted from internal clock in the same frame [closed]

I wrote a small code in Python that generates a flight path using internal clock. I need to plot this flight as data is generated. I have no clue what I should write from here on. I appreciate any ...
0
votes
0answers
94 views

Android graphing from mysql with php

I am trying to pull data from mysql hosted on a remote server to create a line graph for an android app. I found a tutorial on how to do something similar and I'm trying implement his work which I ...
5
votes
2answers
171 views

Can someone explain how to graph this sum in MATLAB using contourf?

I'm going to start off by stating that, yes, this is homework (my first homework question on stackoverflow!). But I don't want you to solve it for me, I just want some guidance! The equation in ...
0
votes
1answer
145 views

wxPython - graphing data

I have an issue with graphing data within wxPython - this code below works but it's not exactly right: For now I plot random numbers which are multiples of an entry box, this is done every 100ms. My ...
0
votes
1answer
682 views

Render OxyPlot graph in Windows Form

I would like to dock an OxyPlot graph in my windows form and graph the function y = 2x - 7. I have downloaded OxyPlot and added the references to my project. I use the following code to add the plot ...
0
votes
1answer
302 views

Plot a line (y = 2x + 7) on a graph

I am working on a scientific calculator in C#. I have the parsing engine and such, now I would like to add a graph so the user can plot a line. Is there any kind of control that will let me input a ...
0
votes
1answer
84 views

PySide Qt Graphin

I am writing a program using PySide and Qt. I need to graph some data, can anyone suggest a tool that would be able to display graphs within the program (in a layout) instead of opening a new window ...
1
vote
1answer
40 views

Force-directed graphing algorithm having strange results

I've been trying to create a force-directed graphing algorithm with RBX::Lua. So far, everything seems to be working absolutely fine mathematically, but there are a couple of things that make ...
0
votes
1answer
40 views

How do I limit the x and y value of a 3-d graph on gnuplot to be only integer values?

OK so I have plotted a 3-d graph z = x-y*15/36 on gnuplot but I am trying to find points on this function where both the x and y values are integers I am aware that conditions can be set with the ...
0
votes
1answer
78 views

Donut Slices Not Visible On Load

Here is a jsFiddle for an issue i have been trying to solve: http://jsfiddle.net/kSSYg/ When the donut chart loads, the slices are not visible, but the legends are. When you hover over, they appear. ...
1
vote
0answers
73 views

Selective patterns with Matplotlib imshow without using patches

Is there a way to place patterns into selected areas on an imshow graph? To be precise, I need to make it so that, in addition to the numerical-data-carrying colored squares, I also have different ...
0
votes
0answers
77 views

How to use arbitrary (non-date/time) x-values with morris.js

I'm just trying out the Morris.js package for generating graphs. It is designed to have a date for the x values. How can I use plain numeric values instead of dates? (In my case, I want to plot by ...
0
votes
1answer
317 views

d3js replica of nested line graph

I am trying to use d3js to recreate the chart below I have been trying to follow along with this question D3js - Creating and easily updating a multi-line chart but I am missing some fundamentals ...
1
vote
1answer
164 views

Selective patterns with Matplotlib imshow

Is there a way to place custom patterns into selected areas on an imshow graph? To be precise, I need to make it so that, in addition to the numerical-data-carrying colored squares, I also have ...
0
votes
1answer
1k views

Overlay circle, text, etc. over d3.js multi-series lines

I have the multi series line chart code with slight modifications to support my data set. This is what I wish to do, and no solution I have looked at seems to function properly for me. I wish to ...
0
votes
1answer
300 views

Use only select tsv columns to graph in d3.js

I have a working visualization based on this multi-series line chart. I'm looking to extend this code by creating hover-over elements on it that display some associated data about that data point. I'm ...
1
vote
3answers
117 views

Clean and Visually-Appealing jQuery/JavaScript Graphing API [closed]

I've been doing some research into various graphing APIs for use in a social media dashboard that I'm building, and I'm having trouble finding one that is both highly configurable and "clean" looking. ...
0
votes
1answer
142 views

Flot not respecting 12 hour time formatting

I'm using Flot for graphing and I'm having trouble getting it to report 12 hour time, instead of 24 hour time. I'm using this code (which works fine otherwise) $(function () { ...
0
votes
1answer
114 views

Unable to properly update Flot graph on ajax response

I have a graph that is properly generated when the page loads. That code is: <body> <div id="placeholder" style="width:800px;height:400px;"></div> <script ...
2
votes
1answer
118 views

Attempting to draw hyperbola in matplotlib produces line along vertical asymptote? [duplicate]

I'm attempting to draw a hyperbola using pyplot and matplotlib. This is my code: from __future__ import division import numpy import matplotlib.pyplot as pyplot x = numpy.arange(0, 1000, 0.01) y = ...
0
votes
0answers
88 views

JSON FLOT graphic not working properly

I am passing the following data into this function: $.ajax({ url: "getdata.php?TYPE=12&ID="+id, method: 'GET', success: function(data) { $.plot($("#placeholder"), ...
8
votes
1answer
391 views

Use image instead of labels in ggplot2 legend

I have a plot in ggplot2 with, say, 2 lines, and in the legend I have "Sharks" and "Tigers". Is there a way I could have shark/tiger images appear in the legend instead of that text?
0
votes
0answers
254 views

Customize xAxis of an ordinal scale?

I'm using d3.js to build a stacked bar graph. Example to illustrate: I'm charting total miles driven per day. So one may drive 20 miles in the morning, 5 during lunch, and 20 again in the evening. ...

1 2 3 4 5