A graphical technique for presenting a data set or an equation.

learn more… | top users | synonyms (1)

7
votes
2answers
63 views

Automatic construction of a colormap around the value zero

I often want to plot a difference image that ranges from some negative number to some positive one. The issue with that is that matlab's colormaps scale only from the min value to the max value but ...
3
votes
1answer
38 views

Matlab plots black border

I have three different plots inside a loop: two plots have border, but one doesn't: I want all of them to have a black border. I tried to make it by using box but the problem persists. hold on ...
1
vote
1answer
49 views

Associated Labels in a dendrogram plot - MATLAB

I have the following set of data stored in file stations.dat : Station A 305.2 321.1 420.9 383.5 311.7 197.1 160.2 113.9 60.5 60.5 64.8 154.3 Station B 281.1 304.0 353.1 231.9 84.6 20.9 ...
-2
votes
1answer
44 views

Python: Plotting Bessel functions of the first kind with a float argument

The equation I am working with is $$ E = M_e + \sum_{n = 1}^N\frac{2}{n}\mathcal{J}_n(ne)\sin(nM_e) $$ where $\mathcal{J}_n(x)$ is the nth Bessel function of the first kind. As a test, I plotted ...
2
votes
2answers
66 views

removing part of a graphic in R

Here is a picture obtained from R (the code is given below). I'd like to export it in pdf format. However, I'd like first to remove the legend bar on the right. As far as I know, there is no ...
1
vote
2answers
33 views

Correct scaling of circular markers in scatter plot

I have a system of finite size circular particles (say r=5cm) which I need to plot in a given domain (say L=5m). Since they are many, scatter is faster than any cyclic use of rectangle. What is ...
0
votes
1answer
100 views

Python: Plotting a infinite series by only taking finite points

I am trying to plot an infinite series by taking only a finite amount of points. In my case, 3 and 10 points are sufficient. The equation is the Lagrange power series in e the eccentricity. E = Me ...
2
votes
1answer
50 views

How to put fine grid in plot

I have a function like this: plot(f,Body, 'r', f,Walk, 'b', 'LineWidth' , 3); I want to put fine grid in the plot. How do I do this. Tried this plot(f,Body, 'r', f,Walk, 'b', 'LineWidth' , 3); ...
0
votes
2answers
44 views

Get new position x distance away from another position using a slope

Excuse me if I phrased the title wrong, I am not great with math and don't know the right term, but I figure someone will edit it correctly. I am creating a script in Lua and I have a target location ...
4
votes
2answers
52 views

How to plot/save only the colorbar in Matlab?

How can I plot only a color bar, e.g. jet from -1 to 1, in Matlab? I need to save it as an image. Running colorbar also plots an empty axis next to the color bar.
0
votes
1answer
42 views

How to avoid offset between pcolor()/imshow() and contour() overlays?

I would like to show a pseudocolor image (such as produced by pcolor, pcolormesh or imshow) overlayed with contourlines. It appears that those three plot functions can be one data point off. Here's an ...
1
vote
1answer
30 views

Disable/skip show()

I am writing a script to generate a number of plots from data, each plot first being saved with plt.savefig(), then shown by plt.show(). In the first phase I want all plots to be shown and the script ...
0
votes
1answer
29 views

Multiple ListPolarPlots in 3D? in mathematica

Is it possible to plot multiple ListPolarPlots to give a 3D effect in Mathematica? I can plot multiple polar plots using ListPolarPlot[{data1, data2, data3}] without any problems; but with lots of ...
5
votes
8answers
8k views

Python plotting libraries

What alternatives are there to pylab for plotting in Python? In particular, I'm looking for something that doesn't use the stateful model that pylab does.
2
votes
2answers
1k views

Matplotlib - hiding specific ticks on x-axis

I am trying to hide the first and last x-axis tick text of my bar plot, which is '2004' and '2013'. Matplotlib automatically adds these in by default, even though my dataset is for 2005 to 2012, hence ...
31
votes
2answers
19k views

Hiding axis text in matplotlib plots

I'm trying to plot a figure without tickmarks or numbers on either of the axes (I use axes in the traditional sense, not the matplotlib nomenclature!). An issue I have come across is where matplotlib ...
0
votes
3answers
69 views

Animated graph to Animated Gif (Python)

I have made a simple n-body simulator and I plot/animate the movement with the following code: for i in range(N): [...] x = [ Rbod[j][0], Rbod[j][0]] y = [ Rbod[j][1], Rbod[j][1]] ...
1
vote
2answers
48 views

How to plot different class of time series data into one panel?

I have several product's hourly summary of multiple attributes in one table. and I would like to plot them into one panel where x-axis stands for time and different type of products have different ...
1
vote
0answers
34 views

Is there a good, simple Python charting library with no dependencies?

I'm writing an open-source project which is not primarily graphics-oriented. It would be handy to provide some very basic line graphs (as a way of letting users look at their data), but not at the ...
0
votes
0answers
28 views

plotting and scaling graphs

I am trying to re scale the x axis of a plot WITHOUT altering the shape of the plot so I have tried setting limits etc but it always alters the graph IE I lose half of the image. the data I have ...
-3
votes
1answer
45 views

Matlab - different speed of loop on mac and windows [closed]

I write a project - an app which approximates value of an definite integral by using upper sums, lower sums and Monte Carlo method. It also presents whole process on three axes. My problem is in Monte ...
-1
votes
1answer
54 views

How to make a plot of generalized beta distribution?

I am trying to plot the beta-gumbel distribution using R(software) by the following, The genreal idea is that, in the pdf of beta distribution, instead of plugging in x, we use the cdf of gumbel ...
2
votes
1answer
27 views

List of ints to list of strings in MATLAB

I have a list of integers [0, 10, 20, 30, ...] And I want to use them as a legend in a plot. My understanding is that I need to give the command legend('0','10','20','30', ...) So how do I get ...
0
votes
1answer
28 views

Python Draw graph with percent of frequency distribution

I'm using Python and have never used it before to draw a plot and was wondering if there's a way to do the following. I have a file containing a column with percents (of DNA methylation data). I would ...
3
votes
2answers
784 views

matlab draw a graph from the incidence matrix

Is there a way to draw a graph from the Incidence matrix. By graph I mean http://en.wikipedia.org/wiki/Graph_(mathematics) not a plot. Up till now I found only how to convert incidence matrix to a ...
1
vote
2answers
67 views

grid.arrange with John Fox's effects plots

I'd like to combine multiple effect plots in one window with the effects package, but don't know if there is an easy way to do so. Here's an example that doesn't work: d1 ...
1
vote
2answers
66 views

Temporal density plot in R

I have irregularly measured observations of a phenomenon with a timestamp each: 2013-01-03 00:04:23 2013-01-03 00:02:04 2013-01-02 23:45:16 2013-01-02 23:35:16 2013-01-02 23:31:56 2013-01-02 23:31:30 ...
2
votes
1answer
46 views

Why can't I modify the axes from a JavaFX LineChart?

I got a LineChart which actually hold two axes. I really need to manipulate the bounds for xAxis and the ticking, however I can't get the axis as a NumberAxis, I just get it as an Axis for which I ...
0
votes
1answer
34 views

Matlab gplot extra customly defined colors

I have a question regarding Matlab's function gplot. I would like to call gplot several times in a for-loop to plot several graphs/paths in the same figure. However, I would like to use more colors ...
1
vote
2answers
634 views

In MatLab, how to adjust the line width drawn by the function 'gplot'?

As the help document of MatLab saying, we can use gplot in such a form as gplot(A,Coordinates,LineSpec) But when I try to modify the linewidth of the line and use a code like ...
3
votes
2answers
103 views

How to arange a heatmap and an scaterplot one above the other in ggplot2 [duplicate]

I am a newbie using ggplot2 and I'm trying to plot a scatter plot above a heatmap. Both plots have the same discrete x-axis. This is the code I'm trying: library(ggplot2) library(grid) ...
0
votes
1answer
48 views

How to creata a “plot matrix”

Hey dear R community ! I have a dataframe with stock values like this: 1 2 3 ... N EADS Daimler BOEING 01.01.2012 5,2 ...
0
votes
2answers
33 views

Multiple plot by group by one function

I have the following data: Animal MY Age 1 17.03672067 1 1 17.00833641 2 1 16.97995215 3 1 16.95156788 4 1 16.92318362 5 1 16.88157748 6 2 16.83997133 2 2 16.79836519 3 2 ...
0
votes
3answers
42 views

Plot titles in R using sapply()

I want to make qqnorm plot out of every variable in my data frame using sapply(). This is what I've got so far: myfun=function(x) { c(qqnorm(x), qqline(x) ) } sapply(mydata, myfun) It ...
0
votes
1answer
34 views

How to superimpose multiple plots [duplicate]

I am required to open data files in .txt format and generate plots out of them. I want to superimpose all the plots together so that I can do comparison between them. I am doing the following. I have ...
1
vote
1answer
85 views

matlab serial data plotting in real time

I am trying to plot real time serial values over matlab but i could not succeed it by any demo . My embedded system is already sending data which is checked by serial terminal. When I am trying to get ...
0
votes
1answer
30 views

How to remove axis dashes in OxyPlot

I am using OxyPlot and trying to show only the plot. I have found a way to make the axis numbers, the axes, and the background transparent. But I can't seem to find a way to make the axes dashes ...
4
votes
3answers
231 views

Graph flow chart of transition from states

I'm trying to find a way to graph something like this in R: It is a transition between states, I want the boxes to be equal to the population size and the arrows to indicate the size of the ...
0
votes
1answer
25 views

Matlab: Plot a function with different parameters into

In Matlab I have a function calling a set of parameters. I have 3 sets, and I can call them individually and plot them.. No problems there. But I want to be able to compare them in one single plot. ...
0
votes
0answers
10 views

replacing data frame values with NA in r

I have a large data frame that consists of 38 variables and over 10000 observations for each variable. How can I select a certain variable and replace specific values with NA. For example, if I have ...
0
votes
2answers
57 views

XY Plotting with Java [closed]

I'm trying to find some information for a co-worker about plotting with Java - specifically xy plotting. I've come across multiple java libraries but I'm not sure which of them are easy to learn to ...
0
votes
2answers
50 views

Automated barplots slope calculation

I use a function in R that draws for me a full-length barplot, as can be seen in this picture. I am actually looking for something a little more advanced. Is there anyway in R that can detect the ...
2
votes
1answer
33 views

How to change the x-axis when plotting groups from a pandas groupby combined in one plot

I am processing a chatlog and my data consists of timestamps, usernames and messages. My goal is to plot the number of messages per month for several users, so that I can compare when users were ...
0
votes
1answer
73 views

MATLAB going from Cart to Pol back to Cart coords for cylindrical plot

1. What I WANT to do: (i) Use input n to generate an n*n cartesian grid [x y] = meshgrid(linspace(-1,1,n)); (ii) Generate polar coordinates [theta r] = cart2pol(x,y); (iii) Evaluate a ...
0
votes
1answer
36 views

Plot and Legends in Matlab/ Using different colors for same signal

So I have this code if (e(i)>mean(e)) fprintf('V1\n\n'); %E=High; Voiced c='r'; end; if ((ntz(i)<mean(ntz))& (e(i)<mean(e)) & (e(i)>0.00005)) ...
1
vote
1answer
37 views

Overlay lines and hist with ggplot2

I'm creating a table with a lot of plot using ggplot a=rnorm(30) b=a*a c=rnorm(30) d=c l=runif(30) m=l+3 data=data.frame(A=a,B=b,ss=1) data=rbind(data,data.frame(A=c,B=d,ss=2)) ggplot()+ ...
1
vote
1answer
43 views

X axis on a two-screen zoo plot

This time I am struggling to adjust the X axis in a two-screen zoo plot. Here's an example, inspired from a previous post: x.Date <- as.Date(paste(rep(2003:2004, each = 12), rep(1:12, 2), 1, sep = ...
1
vote
2answers
36 views

Are there restrictions when doing R plots in Sage?

I have done some data analysis with Sage and R, and at this point I would like to produce a nice set of plots to condense the results so that I can present them properly. What I've done is set the ...
5
votes
2answers
15k views

“Error in plot.new() : figure margins too large”

In R, I met a running error as follows: > png("p3_sa_para.png", 4, 2) > par(mfrow=c(1,2)) > plot(c(1:10), ylab="Beta",xlab="Iteration") Error in plot.new() : figure margins too large > ...
0
votes
1answer
54 views

Blurry label text in matlab plots

I'm having some matlab plots. when I save the plot and then put it in my word document and then save it as pdf file. I get the plot labels blurry and some letters is unclear ?! plot(d1,S,'*'); ...

1 3 4 5 6 7 80