Questions tagged [axes]

Axes - plural of axis

Axes is plural of axis used in Cartesian coordinate system.

1002 questions
5
votes
1 answer

Assigning two y-axes to two lineseries in oxyplot (C# WPF)

I've searched low and high for an answer to this question, but I only find older answers related to Windows Forms and not WPF. Nothing is mentioned in the documentation. I have two lineseries that I plot using oxyplot. However, I am not able to…
Henrik_er
  • 87
  • 1
  • 9
5
votes
1 answer

Changing the number of tick marks using locator params in matplotlib

I'm trying to control the number of tick marks on my graphs using locator params. I want a graph that has five vertical lines plus the two edges of the graphs (ie 7 values total on the x and y axes). I've been using locator params and trying to set…
pelkat
  • 71
  • 5
5
votes
0 answers

How do I ensure that my matplotlib axes are of a custom class?

I have a custom figure class and would like to ensure that all of the axes associated with it, whether created with subplots() or twinx(), etc. have custom behaviors. Right now I accomplish this by binding new methods to each axis after it has been…
orome
  • 45,163
  • 57
  • 202
  • 418
5
votes
1 answer

Setting the color of mayavi.mlab.mesh axes labels

I am trying to set the color of the axes labels in a plot generated using mayavi.mlab.mesh to white using the following extract of code: ax = m.axes(color=(1.0,1.0,1.0),nb_labels=4, xlabel='Delay (ps)', ylabel='Wavelength (nm)',…
user3645594
  • 121
  • 1
  • 4
5
votes
1 answer

make only left subplots and bottom subplots (in MxN panels) contain x and y axis labels

Is there any way in a panel of NxM subplots to just have the axes being shown for the left column and bottom row. A|N|N|N A|N|N|N A|N|N|N A|A|A|A Where A = axis and N = no axis Sometimes my subplots are 10x8, 3x4, 4x9 etc. and they all have the…
Griff
  • 2,064
  • 5
  • 31
  • 47
5
votes
1 answer

Matlab Fonts Not Rendering Correctly on Print or Export

I'm trying to make a matlab figure that nicely fits into a LaTeX Document. A known problem is that the XTickLabel and YTickLabels do not render using the LaTeX interpreter, causing bad looking plots. (Note: I realize there are some fixes out there…
mrsoltys
  • 1,075
  • 10
  • 13
5
votes
2 answers

How can I have each plot in matplotlib's `subplots` use a different axes?

So when I try to graph multiple subplots using pyplot.subplots I get something like: How can I have: Multiple independent axes for every subplot Axes for every subplot Overlay plots in every subplot axes using subplots. I tried to do…
Eiyrioü von Kauyf
  • 4,481
  • 7
  • 32
  • 41
5
votes
2 answers

Naming dimensions in python?

There is something that I would very appreciate, it is the ability to name the dimensions in an array in python. For example I have a numpy array with 3 dimensions and I will regularly have to sum it along a specific dimensions. So I can do with a…
François Laenen
  • 171
  • 4
  • 14
4
votes
2 answers

Choosing axis in plotyy

This should be quite simple, although I was not able to find a solution in the Matlab docs. I have to plot two or more sets of data, that can be fit in two different ranges. So I can use plotyy to manage this. What I want to do, is being able, once…
clabacchio
  • 1,047
  • 1
  • 17
  • 28
4
votes
2 answers

How to determine if axes are 2D or 3D in Matlab?

As stated, what is the easiest way to determine programmatically if a Matlab axes object is a 2D or 3D plot?
crobar
  • 2,810
  • 4
  • 28
  • 46
4
votes
2 answers

Save image from axes in MATLAB

I generate a picture in an axes that is called newIM when I click on the apply button. Now, I want to save this new picture in a jpg, gif, bmp or whatever file when I push the save button. This is what I had: pathname = 'D:\pictures\'; filename =…
user1008374
  • 41
  • 1
  • 2
4
votes
1 answer

Consistent and Reproducable Axes Spacing

I am trying to create a gif made out of plotly graphs. And this works surprisingly well! The only problem I’m having, is that I haven’t found the correct setting for fixing the stretching of the axes. So far, I was able to create this gif (I cannot…
d3lt4_papa
  • 43
  • 4
4
votes
2 answers

Coordinate Axes in Visio

I Visio start of coordinates is the left-lower corner. Is there any way to change it, for example set the left-upper corner as a start of coordinate axes?
Daniil Belonin
  • 373
  • 1
  • 9
  • 19
4
votes
1 answer

Remove axes from a figure

Is it possible to remove the axes from a pyplot.figure()? Using the pyplot.imsave() to create an image without axes works OK plt.imsave(file, zi) but it's limited because it only works with grid data. When I use pyplot.figure() and save it using…
Ivo Bosticky
  • 6,338
  • 6
  • 34
  • 35
4
votes
1 answer

Force the origin to start at 0 without margin between data and x axis in new ggplot theme

Based on this question Force the origin to start at 0 I want to implement this into a new created theme and not just as a default setting. data(iris) ggplot(iris, aes(x = Species)) + geom_bar() + scale_y_continuous(expand = expansion(mult =…
Bolle
  • 322
  • 2
  • 11