Tagged Questions
0
votes
1answer
40 views
Gnuplot: Plot line with labels
Having a plot with several traces. I want to plot one trace with labels.
plot "-" ls 3 notitle ,\
"-" ls 4 title "Trace 1", \
"-" ls 5 title "Trace 2" ,\
"-" with points ls 6 notitle
...
0
votes
1answer
82 views
Population pyramid w projection in R
I would like to create population pyramids in R. I know that there are many examples here on StackOverflow, but I would like to create one that also include population projections, i.e. with bars for ...
3
votes
1answer
73 views
Plotting error ellipses in R
I'm trying to plot a U-Pb isochron, which is basically an xy plot, with an error ellipses around each datapoint to indicate the precision of that data point. Here's an example of what I'm trying to ...
0
votes
0answers
36 views
Need help plotting and running linear regression on millions of data points
I have a .txt file with three columns and about 10 million rows. I am trying to plot the second versus the third column, as well as run a linear regression on the third column versus the second ...
0
votes
1answer
123 views
Gnuplot: Plotting data from two files after performing mathematical operation between them
I have
FileSFC1: contains certain data
FileSFC2: contains some other data
Now what I need to do is divide the second column of FileSFC1 with the second column of FileSFC2 and then plot this result. ...
1
vote
1answer
283 views
Reading external data files in gnuplot
Well, this is a continuation of my previous question. As, I mentioned, the data files are produced from a Fortran code. All the data files contain two columns of data. In the Fortran code I use the ...
0
votes
1answer
32 views
Combine multiple data files in a single plot
I have several data files produced from a Fortran code. All the data files are following the same style regarding their names, that is: data###.out, where ### starts from 001 and ends to 500. I know ...
1
vote
1answer
68 views
reading values from a graph in Python
I'm currently trying to plot data from a SPICE simulation in python. I have succeed in plotting the information but now I require to extract values from specific points, say for example I would like ...
1
vote
0answers
119 views
How to scale y-axis to intuitively detect small differences in data
I have a data set from a literature survey, where we looked at effects of pH to certain parameters (Metrics) in a group of animals. Because experiments are done on different time scales, I divided the ...
-1
votes
2answers
403 views
how to make interaction plots in R?
Edit: I solved the problem. I will reply with the solution.
I am in a bind.
I am trying to create an interaction plot between some variables to determine their impact on the response.
The data is at ...
0
votes
3answers
92 views
Make plot with varied line color for specific y values on MATLAB
I want to make a plot such that for all y values greater than some y0, the plot will be shown in red. For all other values, it will be shown in blue. Is this possible in MATLAB? This would help draw ...
2
votes
1answer
365 views
Use row-names of a data.frame in R-plots?
I have data for several (here: 2) plots, which both have the same x-values. I thought, that it might be nice to have a data.frame, that has those x-values als row-names.
# initialize the datafrane ...
3
votes
2answers
157 views
Data interpolation in python
I have four one dimensional lists: X1, Y1, X2, Y2.
X1 and Y1 each have 203 data points.
X2 and Y2 each have 1532 data points.
X1 and X2 are at different intervals, but both measure time.
I ...
4
votes
1answer
185 views
Ask user to select desired data range from EXCEL using MATLAB
In order to plot data from Excel in the same Excel file using Matlab, is it possible to ask for the user to select the desired range instead of defining the range in the Matlab code?
1
vote
3answers
459 views
qqline connects the first and third quartiles. How do I draw a line between different quantiles (ie 30% and 70%)?
I have a qqnorm plot of a data set with 1000+ points. I want to draw a line between two quantiles at a time (say 30% and 70%) just as qqline does with 25% and 75%, but with the freedom of choosing ...
0
votes
0answers
27 views
Change interpolation results
I have a question. I've done some interpolation:
t= 200:.01:1500;
l= pchip(l1,l2,t);
plot(l1,l2,'o',t,l,'-');
axis([200 1500 0 1])
But the result of the x vector is not one by one numbers (like ...
0
votes
2answers
333 views
Rescale axis in grouped scatter plots with use of axes breaks
The data for some of these types graphs that I'm graphing in R,
http://graphpad.com/faq/images/1352-1(1).gif
has outliers that are way out of range and I can't just exclude them. I attempted to use ...
2
votes
2answers
182 views
Matlab basic data graphing
I'm very new to matlab and need some help finding the correct syntax to do a simple data graphing task. I have a script that analyzes a wave form and saves a six point vector (its value is <3791x6 ...
0
votes
1answer
73 views
SSRS Execute and display data created by TSQL
I have a TSQL scrip that populates coordinates as a table variable:
declare @reg_data table
(
I int NOT NULL PRIMARY KEY IDENTITY,
X float,
Y float
)
insert into @reg_data
select field1, ...
0
votes
1answer
192 views
Gnuplot: plot only (x,y) points with a specified z value
I have x,y,z data in 3 columns like this:
1 2 1
2 4 1
3 3 1
4 4 2
5 8 2
6 6 2
Say I only wanted to plot just (x,y) values where z=2 (i.e, just last 3 rows). How do I do that within ...
0
votes
2answers
96 views
How can I extract columns of data from a CSV file and define them as x and y variables, then plot them in python using pylab?
I've got a CSV file with data such as
350, -0.042447984
349, -0.041671798
348, -0.04158416
347, -0.041811798
346, -0.041716855
Though I've got a lot more data. What I am trying to do is have the ...
0
votes
1answer
94 views
Plotting uneven row sizes in R
I have data in tab delimited rows of uneven length and I want to make a histogram for each row:
1 23 352 4 12 94 0 2
434 13 29
5 93 93 34
(...more rows)
This is ...
0
votes
2answers
237 views
Making multiple plots in R from one textfile
I'm new to R and trying to generate a lot of graphs from one file, with headers between different data sets.
I have a tab-delimited plaintext file, formatted like this:
Header: Boston city data
Month ...
0
votes
0answers
225 views
real time com port data plot in c#
I am new to c#, for my project, trying to make com port plotting application while i have shot time left. My input data from com pot represents digitized voice signal levels from arduino ranging ...
2
votes
1answer
301 views
Storing and analysis of historical data - What kind of Database?
i'm currently designing a system that watches the ranks / views of youtube videos. of LOTS of youtube videos (> 500.000 and growing) on a daily basis.
I'm currently considering storing this in a ...
-1
votes
1answer
110 views
matlab-how to make a fusion of three similar looking graphs into one graph
I have x-cordinate graphs plotted against time of a particular data.
For more accuracy the data is taken 3 times n hence I have a set of 3 graphs.
The graphs obtained are similar but not upto the ...
0
votes
1answer
129 views
advice for comparing 3 variables and plotting
In the following example, I would appreciate some feedback on the best method for plotting the required outcome.
clear all
Table1 = ...
1
vote
3answers
144 views
scaling data to fit pixel space
I have a dataset that I am plotting within a rectangular space defined in the code below. The length of the dataset will almost always be different than the width in pixels of the screen space in ...
1
vote
1answer
417 views
Plotting series with some no data in xyplot in R
I tried this question on the R-Help list with no success CrossPostHere...
I am working on some xyplots using the Lattice Library. My X-axis is
the date and I am reproducing charts similar to those ...
0
votes
1answer
1k views
Displaying 3-D scatter plot w/ Color Dependent on Data
I have a large set of data that I've collected that I'd like to display in a 3-D scatter plot. The data is contained in a text file.
The data is organized like so
1 1 1 10.8
2 1 1 3.4
4 1 1 6.1
8 1 ...
2
votes
0answers
369 views
Using Koolplot without creating a new window for graphing C++
I have been experimenting with the Koolplot plotting library. I have managed to set up the linking and includes so everything compiles nicely. I was wondering if it was possible to plot a graph within ...
5
votes
5answers
502 views
Color Plot by order of points in list - Mathematica
I've got a list of three dimensional points, ordered by time. Is there a way to plot the points so that I can get a visual representation that also includes information on where in the list the point ...
0
votes
1answer
134 views
user-selected marker in time series data in Java
My code plots 5000 points of time series data in a panel that is 581 pixels wide by default, but this width changes when the user resizes the window. My code also plots several rectangular markers ...
2
votes
1answer
101 views
R: How should I format my data prior realizing this plot?
I want to plot three graphs in one plot: upper quartile, median, and lower quartile over time.
Right now I have the data in this format:
t_1 x_1 x_2 ... x_n
t_2 x_1 x_2 ... x_n
... ... ... ... ...
...
0
votes
1answer
284 views
Using set to update graphs in matlab
I'm trying to update new values to a function using the 'set' function.
so here is the code:
daq_object = analoginput('winsound');
chan = addchannel(daq_object,1);
x=[10];
num_samples = 1000;
...
8
votes
3answers
16k views
plotting 3D data in R
I have a 3D dataset:
data = data.frame(
x = rep( c(0.1, 0.2, 0.3, 0.4, 0.5), each=5),
y = rep( c(1, 2, 3, 4, 5), 5)
)
data$z = runif(
25,
min = (data$x*data$y - 0.1 * ...
4
votes
1answer
5k views
Plotting CDF of a dataset in R?
I am not really sure about the difference between CDF (Cumulative Distribution Function) and ECDF (Empirical Cumulative Distribution Function) but I usually utilize a CDF plot to make observations ...
1
vote
3answers
405 views
Dynamic plots in HTML
I have been developing a software package to plot astronomical data in the form of a movie. It looks like this.
To do this, I export 100 tables of data from Java to gnuplot and use a bash script to ...
1
vote
1answer
461 views
How can one plot time-related information with python in a natural human-readable way?
Often, you have a set of events (visits to a website, price information, whatever) that's related to a time value, let's say a timestamp (though a datetime object is just fine). How can they be ...
0
votes
1answer
440 views
R-project: plot 2 zoo objects (price series) that have some date mis-matches
I have 2 zoo objects -
1) Interest rate spread between 10-YR-US-Treasury and 2-YR-US-Treasury (object name = sprd)
2) S&P 500 index (object name = spy)
> str(spy)
‘zoo’ series from ...
2
votes
2answers
2k views
How can I plot subsets of temporal data?
I'm entirely new to R, to programming, and to data analysis, and I apologize if I am asking my question in the wrong place. Thanks for any help or ideas you can offer, or any direction or advice if I ...
0
votes
1answer
388 views
Errors in Gnuplot PDF output
I'm trying to plot data with Gnuplot where all data values are positive. However, when plotting to PDF some of the output values appear negative under the x-axis: http://tinypic.com/r/14iztbs/7
This ...
3
votes
2answers
246 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 ...
10
votes
4answers
13k views
How can I extract data from a .fig file in MATLAB?
I know this is really basic, but I am new to MATLAB. After opening a .fig file, how do you actually work with the plotted data in the command window? All I see is the plot. I'm not sure how to ...
0
votes
3answers
1k views
Matlab- select data from a 3d plot
I have a 3d plot.
I want to select a certain area in the plot and get the points within this area into a variable.
Is that possible?
Thanks,
Li
1
vote
4answers
402 views
rs232 communication, general timing question
I have a piece of hardware which sends out a byte of data representing a voltage signal at a frequency of 100Hz over the serial port.
I want to write a program that will read in the data so I can ...
6
votes
3answers
2k views
Curve fitting: Find the smoothest function that satisfies a list of constraints
Consider the set of non-decreasing surjective (onto) functions from (-inf,inf) to [0,1].
(Typical CDFs satisfy this property.)
In other words, for any real number x, 0 <= f(x) <= 1.
The logistic ...
1
vote
7answers
1k views
How do I plot the output from a C++ Win32 console app?
I have a small Win32 console application which is essentially a test harness. I read data in, do some processing on it and currently just output some of the numbers to the console. This isn't a huge ...
26
votes
17answers
19k views
Are there any decent free Java data plotting libraries out there? [closed]
On a recent Java project, we needed a free Java based real-time data plotting utility. After much searching, we found this tool called the Scientific Graphics Toolkit or SGT from NOAA. It seemed ...


