A graphical technique for presenting a data set or an equation.
1
vote
1answer
33 views
Manipulating series in MATLAB plotting
I am plotting 2D (mxn) matrix data in MATLAB with plot command.
plot(DATA,'.') plots the columns of DATA versus the index of each value. Thus, it threats each column as independent series.
...
0
votes
2answers
72 views
Bland-Altman plot in python
The question is pretty straight forward. Is it possible to make a Bland-Altman plot in python ? I can't seem to find anything about it in python. Anyone used this in python ?
(another name for it is ...
0
votes
1answer
32 views
change LineWidth of plot of fit in matlab
I'd like to change the width of my fit plot along the lines of:
plot(fit, 'LineWidth', WidthSpec)
Unfortunately, when I try plotting the data and fit simultaneously like:
plot(fit, 'LineWidth', ...
0
votes
1answer
22 views
Plotting error values in MATLAB for highly dense temporal data
I know that we can plot error values in MATLAB using errorbar.m
However, I need to know if it possible to plot error values as a "faded tape" on the data so the actual data values are still visible. ...
1
vote
2answers
31 views
Show the intersection of two curves
If I have two plots defined by two different equations:
x=0:0.01:30;
y1=x.^2+2;
y2=x.^3;
and I plot them as
plot(x,y1,x,y2);
How do I get a small ring indicating the ...
-1
votes
1answer
43 views
Plot f(x) and g(x) as function of x
I have:
A=f(x);
B=g(x);
I want to plot these graphs A against B:
I did
plot(B,A);
I also tried
plot(x,B,x,A)
(which seems more plausible).
But apparently, this is not the plot I should ...
1
vote
2answers
50 views
MATLAB: Dynamic heatmap
I have 3D matrix of dimensions D x D x N. I want to create a dynamic heatmap to show how it's varying over N. Here's the MATLAB code I used to achieve this.
for n=1:N
heatmap(dynamicCov(:,:,n));
...
0
votes
2answers
38 views
How to change na.action for zero-inflated regression model?
I am running a zero-inflated negative binomial regression model using the function zeroinfl from the pscl package.
I need to exclude NA's from the model in order to be able to plot the residuals ...
1
vote
1answer
43 views
How to scale points in R plot?
I have 40 pairs of birds with each male and female scored for their colour. The colour score is a categorical variable (range of 1 to 9). I would like to plot the frequency of the number of males and ...
-3
votes
0answers
24 views
Polarplot wind force as a function of wind direction and wind angle
I want a 3D polarplot that shows the force of the wind. This force is a function of the wind direction (that's why I want the polar plot) and the wind speed (concentric circles). Then I would like to ...
0
votes
1answer
41 views
How to create lattice plot title with new line, italics and variable names in R
I've been trying to add a title (via main) to a map created with spplot that consists of two lines of text, but with the second line italicised. The text in each line is drawn from a variable name. ...
0
votes
0answers
35 views
Custom legend in a plot
I have a code which I draw a circle of given radius and color on some points of the graph. The following code is only a dummy example to illustrate how my code looks like. I also did use of some ...
0
votes
1answer
26 views
Force plot to have a special size or to increase the distance between subplots
I am trying to generate a plot by matplotlib that three graphs are in a row and axes have names. Unfortunately the dimension is in a way that labels run into the other graphs. How can I avoid this?
...
-1
votes
1answer
38 views
suppress the margin of R plots vertically [duplicate]
I am using base R plot function to generate vertically aligned plots (2-by-1), with both x and y labels but without a title. However, when I use
par(mfrow=c(2,1))
plot(obj1)
plot(obj2)
I notice ...
0
votes
2answers
46 views
hold off of just the last plot in matlab [duplicate]
I am trying to plot something in Matlab. First I am ploting some 3d points and then I execute the hold command. Next I plot some other plots. I want just my first plot to be remembered and never ...
0
votes
0answers
7 views
Mathematica 3-D plot (discrete/continous) [migrated]
I want to visualize a 3-D function in Mathematica, Say F(x,y,z)=0, But there is a small difference here with typical z=f(x,y). Because of it's complexity, I decide to consider the z parameter as a ...
1
vote
1answer
62 views
Control ggplot2 legend look without affecting the plot
I'm plotting lines with ggplot2 like this:
ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + theme_bw()
.
I find legend marks to be small so I want them to be bigger. If I ...
0
votes
2answers
30 views
Error plotting data from netcdf file “increasing x y values expected”
I want to plot sea surface temperature data from a regular grid but can't find the proper way to do it. My data comes in nc format
and can be downloaded from ...
1
vote
1answer
50 views
MATLAB - Pan a plot independently of other plots in the same axes
If I have multiple plots (A, B, C) on the same axes, is it possible to pan A without panning B and C as well?
If not, is there another way I can accomplish the same goal?
0
votes
0answers
15 views
What charting library does Facebook Prineville information page use?
Looking at Facebook Prineville, OR Data Center graphs, I became to wonder if anyone knows which library they use? I took a peek to the source code, but I couldn't really deduce anything. If the ...
4
votes
2answers
47 views
How do I specify axis thickness in a plot? (in R)
I am using using plot(), matplot() and ggplot(). I am guessing the answer will be the same for all of them.
I want to specify the thickness of the y-axis, the x-axis, and the other two lines that ...
0
votes
1answer
64 views
Open many files and plot colour by dataset in R
I am a newbie to R and I am sure this is simple, but I am not sure what terms to search for.
I have a series of data files in directories, each with the same format (tab separated, each has X_DATA ...
3
votes
2answers
92 views
How can I color the ocean blue in a map of the US?
I would like to draw a map of the US over an image, but then fill in the oceans.
here is my starting point:
library(maps)
library(graphics)
image(x=-90:-75, y = 25:40, z = outer(1:15, 1:15, "+"),
...
0
votes
1answer
36 views
plot points as a trajectory of tracking from video
I think this is very easy question for some of you , but I do not have any experience in Matlab !
I am tracking a point in all the frames in video. now I want to plot this points to show the ...
0
votes
1answer
42 views
Plot n series on same plot not overlapping
I have a time series of prices, 2000 entries.
I have created 12 vectors where each one contains only the data for one month. They don't have the same length, vary about 20 values between 160 and 180 ...
0
votes
0answers
54 views
How do I add 2 Y axis to my MATLAB Plot?
I know this question has been asked before - but none of them deal with a 3D plot with 2 Y axis. My question is a continuation of - How do I add a 2D Plot along with a surface or mesh plot in MATLAB? ...
1
vote
1answer
30 views
How to add axis labels to a multiplot in R?
I managed to create a single plot with 4 different diagrams. However the axis labels don't show up. As I am a beginner in R I'd appreciate if someone could show me how to add axis labels to this kind ...
2
votes
1answer
59 views
Plotting data in Python using matplotlib
I'm currently reading "Machine Learning in Action".
In the chapter 8 of Regression,
p.158 , there are few codes to plot original data point and a fitted line together.
import matplotlib.pyplot as ...
1
vote
0answers
114 views
How to graph a connectivity/adjacency matrix in Matlab?
I want to graph the structure of a network (a power grid) in MATLAB. I have a list containing to-from nodes for each branch. I don't have coordinates for the nodes, and the system topology changes for ...
-1
votes
1answer
55 views
Matplotlib Concentration plot can not show up [Python 2.7 (with Eclipse) ]
I would like to ask for help.
Please for help me with my code in Python 2.7. I want plotting concentration of gas release.
Two weeks ago I started with Python, I did not see it before, I have basic ...
0
votes
1answer
70 views
How do I add a 2D Plot along with a surface or mesh plot in MATLAB?
I would like to have a 2D plot along with a 3D surface or mesh plot - shown by the blue line I drew on the surface plot below. How do I get it?
UPDATE: Natan's Solution worked :-) But I now have a ...
1
vote
2answers
27 views
How can I make this code plot lines, instead of points?
How can I get the code:
for i = 1:100
plot3(i,i^2,i^3);
hold on;
drawnow;
end
To plot, instead of points, lines conneting the points?
Please take into account that the ...
-7
votes
0answers
57 views
I cannot populate a scatter plot with my datasets [closed]
I am trying to populate a scatter plot using R. I am getting an error saying
"Error in strsplit(log, NULL) : non-character argument"
My datasets are like this:
> Dat1 = scan()
1: 66
2: 32
...
-5
votes
1answer
40 views
Plot a three variables function over the specified domain in MATLAB [closed]
I want to visualize a scalar function f(x,y,z) in the 3D space, or even f(x_1, ..., x_n) in a higher-dimensional space.
For example, I want to plot f(x,y,z), where
0.5 <= x <= 1.6;
...
0
votes
2answers
44 views
Why won't my 2D data points in Matlab connect to become lines?
My code creates three "lines" of of data points, but won't connect the points into lines! I've looked at the tutorials, and tried things like plot(Time, CurrentSpeed1, '--') and adding markers, but no ...
0
votes
1answer
34 views
core plot Framework - How to set custom UIView in CPTPlotSpaceAnnotation
I want to set a custom uiview with label outlets in my graph, if a plot symbol was pressed, using the scatterPlot:plotSymbolWasSelectedAtRecordIndex: method.
But how can I give the plot area the ...
-3
votes
0answers
52 views
How to find peaks in matlab
I have the following code saved in a script called overview.m:
subplot(3,1,1), plot(weak(:,2:4));
title ('Weak fall')
subplot(3,1,2), plot(Trip(800:1600,2:4));
title ('Trip')
subplot(3,1,3), ...
0
votes
3answers
28 views
Plotting few lines using one matrix
Let's say I have two matrices x and y
x = [1 2 3 1 2]
y = [1 2 3 1 3]
I want to plot two lines from it, first three points and then two last points.
In the end I want to get this plot. Can I do it ...
2
votes
2answers
74 views
Keep or set the ratio between text labels and size of plot in grid.arrange
I am trying to arrange 2 plots created using ggplot2 and would like the plots to be the size of a square and one next to the other, with the common legend next to them, so that the image fits nicely ...
4
votes
1answer
118 views
python frameworks for a real time website
I'm trying to learn web programming in python, and have the following project in mind: mine the yahoo finance api for instrument data, and display it in real time, as well as plot charts based on ...
1
vote
1answer
33 views
Different titles for plots using loop in R
I am trying to make plots in a loop. But how do I put different titles on each plot? In this example, I want different names for my 8 density plots, such as beta[Treatment], beta[Time Dummy], etc. ...
0
votes
1answer
39 views
MATLAB: Plotting two different axes on one figure
The MATLAB surf plot below is essentially two plots plotted adjacent to each other. For clarity, I have included some code below used to prepare the plot:
band1 = horzcat(band1, eSurface2(:,:,1));
...
2
votes
1answer
37 views
How to hold a plot when using plot3 in matlab?
This works as I expected:
for i=1:100
hold on;
plot(i,i^2);
drawnow;
end
Ploting the points as they come in the same figure.
This on the other hand, doesn't:
for ...
0
votes
0answers
14 views
How to get geogebra to write output to a table
In geogebra, is there a way to write input and output to a table?
For eg., I plot a triangle with base b and height h and geogebra displays the area of this triangle. Now say I define the triangle ...
1
vote
1answer
71 views
Editing Python plot surface ticks and their frequency
Gist of my question:
I have data that I am plot_surface-ing with python. How should I change the values of my xticks and yticks and perhaps their frequency?
Details of my question
I have data such ...
0
votes
1answer
35 views
how to calculate the mean in matlab
I have captured data using a Shimmer for three different types of fall. A trip, weak and strong fall. I have broken these into sub plots and now I need to calculate the mean. I am new to Matlab and ...
0
votes
1answer
39 views
matplotlib: grid in 3D plots
In matplotlib, how can I show a grid in 3D scatter plot?
In 2D plots I just do: plt.grid(True) and it works like a charm. Now with 3D plots the same call returns a warning:
File ...
0
votes
2answers
82 views
plotting data with x1, y1, x2, y2 in the same figure - matlab
I'm trying to do a Hertzsprung-Russell diagram like this one: http://en.wikipedia.org/wiki/File:HRDiagram.png
I have 4 different types of data for the same point (lets call it x1, y1, x2, y2) and i ...
1
vote
1answer
43 views
How do you apply the pch parameter in R to individual points in a scatter plot?
I am interested in changing the symbol used to represent the two most influential points in my scatter plot. In this case, they are rows 19 and 20 in the data frame. The code I have is as follows:
...
2
votes
1answer
45 views
plotting x-axes with custom label in R
I've to plot these data:
day temperature
02/01/2012 13:30:00 10
10/01/2012 20:30:00 8
15/01/2012 13:30:00 12
25/01/2012 20:30:00 6
02/02/2012 13:30:00 5
10/02/2012 20:30:00 3
15/02/2012 ...

