Questions tagged [axes]

Axes - plural of axis

Axes is plural of axis used in Cartesian coordinate system.

1002 questions
0
votes
1 answer

Matlab - different axes size in subplot

I have two graphs with different scale and I would like to use subplot. How do I set axes size for subplot(211) and set different axes scale for subplot(212)???
Mario LIPCIK
  • 457
  • 2
  • 9
  • 24
0
votes
1 answer

Multi axes chart with normal and log scale

I am trying to create a multi axes chart with a normal axis and a logarithmic based axis, using JQPlot. The chart should use four series of data. Whatever I try, I can't seem to create it. Aligning of the axes, let a log scale start at zero, having…
Alex
  • 223
  • 1
  • 6
  • 21
0
votes
1 answer

how to browse image and process it before it's displayed to axes in GUI matlab

I want to create a GUI with matlab, to browse for an image and process it before displaying it to some axes. I can't browse the image with my current program, and the image that I want to display is related to the previous process. Is it possible…
dena
  • 1
  • 1
  • 3
0
votes
1 answer

Macro for Setting X axis to cross the Y Axis based on a cell value

I am looking to set the x axis to cross the y axis based on a value in a cell. Is there a macro I can use to accomplish this? Thanks, Natalie
0
votes
2 answers

double axis used in matlab

I am using a plotyy in matlab to plot two data set in a same figure. The left and right axis are of the different range. But I just find that on the right axis, there seems to be two different set of scale shown. I think one of them is really from…
user1285419
  • 2,183
  • 7
  • 48
  • 70
0
votes
1 answer

how to edit different axis manually in matlab's figure?

I am using a plotyy in matlab to ploy two data set in a same figure. I want to use the figure menu to edit the axes property manually. But I found that I can only select and edit the first axis but not the second one. Of course, I can edit those…
user1285419
  • 2,183
  • 7
  • 48
  • 70
0
votes
1 answer

How to fix scales in heatmap in tableau

I am creating a heatmap with 3X3 matrix. My x-axis scale should be 0, 0.25, 0.50 and 1. I tried a lot to fix the scale but nothing going right. Please help. How can we get the scale of 0,0.25.0.50 and 1?
0
votes
4 answers

how to : specify colors for multiple axes chart?

My chart shows up well but the two lines are of the same color. How do I specify different colors for the two lines? Here is my code (fragment) so far: config.pointIndex = null; config.areaPoints = new Array(); config.areaPoints[0] =…
lost baby
  • 3,178
  • 4
  • 32
  • 53
0
votes
1 answer

Multiple Plots with Different Y Scales Using D3

I am making multiple line plots using d3 (see functional example http://jsfiddle.net/hSrP7/). However, I would like to have different yscales for each plot. I've tried a syntax such as the following, but without success: var diseases =…
mike
  • 22,931
  • 31
  • 77
  • 100
0
votes
1 answer

matlab place an image in the center of the gui

I am trying to place the image: 'Im' in the center of the window, like this: I wrote in the first callback function: img = imread(files{k}); %# Read the data from your image file hAxes = axes('Parent',hOptsGUI,'Units','pixels','Position',[362 242…
Alon Shmiel
  • 6,753
  • 23
  • 90
  • 138
0
votes
1 answer

Changing one single marker in a series in ExtJS charts

this is what I'm trying to do... I have a chart with a line series with markers in it. In the X axis I have dates and in the Y axis a number. So lets say I have in x dates from yesterday to next week. And each day has a corresponding Y axis…
martskins
  • 2,920
  • 4
  • 26
  • 52
-1
votes
1 answer

Shifitng and moving curve matplotlib

So I am trying to make the curve moves as shown in the link, I have thought about moving limits each time but the graph is still static. I have tried before that its starts plot and pause but it wasn't like as shown…
-1
votes
1 answer

How to put axis labels in between the axis ticks in ggplot2

In base R, I like to make plots with time on the x-axis where the labels are shown in between long tick marks. For example, there may be tick marks at June 1 and June 31, but the text "June" shows up in between, centered around June 15. In base R, I…
rrr
  • 1,914
  • 2
  • 21
  • 24
-1
votes
1 answer

Custom Axis Scale in Chart.js

Is there a way to use a function (probably needing a forward and reverse transform) to create a custom axis scale in Chart.js? I'm looking for something similar to what is possible in matplotlib. I know it is possible to do a logarithmic scaled axis…
Matthew Reid
  • 332
  • 2
  • 9
-1
votes
1 answer

Is it possible to extract the default tick locations from the primary axis and pass it to a secondary access with matplotlib?

When making a plot with with fig, ax = plt.subplots() x=[1,2,3,4,5,6,7,8,9,10] y=[1,2,3,4,5,6,7,8,9,10] ax.plot(x,y) plt.show() matplotlib will determine the tick spacing/location and value of the tick. Is…