Questions tagged [axes]

Axes - plural of axis

Axes is plural of axis used in Cartesian coordinate system.

1002 questions
4
votes
1 answer

Add (second) x axis to scatterplot to display group information

I make a scatterplot using d3.js where the points are arranged by their name and an accompanying number. The data that is plotted would look like this: name, group, number "AB", "A", 0.5 "ABC", "A", 10.0 "BC", "B", 3.0 "BCD", "B", …
user1251007
  • 15,891
  • 14
  • 50
  • 76
4
votes
2 answers

(jqplot) How to show minor grid in log scale graph?

I have my jqplot with log scale axis which is look like this: And here is my x and y axis setting for my jqplot: axes : { xaxis : { renderer : $j.jqplot.LogAxisRenderer, ticks : [0.1, 1, 10,…
jhyap
  • 3,779
  • 6
  • 27
  • 47
4
votes
2 answers

Highchart axis max with multiple axes

I'm using multiple axes and I set one axis to use a max. If it is the only axis shown then the max works ok, just what I want. But if another axis is also shown the first axis max can change to be a bigger value. How can I get it to show its max,…
user2573014
  • 43
  • 1
  • 3
4
votes
1 answer

Overlapping axes in GUI when plotting boxplot in MATLAB

I am creating a GUI in MATLAB using GUIDE. I have several axes, and in one of them I want to draw a boxplot. My problem is that after drawing the boxplot, the size of the axes changes, and it overlaps with some of my other figures. To replicate this…
Digna
  • 882
  • 5
  • 25
4
votes
1 answer

Character values on a continuous axis in R ggplot2

Is there a way to include character values on the axes when plotting continuous data with ggplot2? I have censored data such as: x y Freq 1 -3 16 3 2 -2 12 4 3 0 10 6 4 2 7 7 5 2 4 3 The last row of data are right censored.…
Glen
  • 1,722
  • 3
  • 18
  • 25
4
votes
2 answers

Several graphs in 1 loop, each iteration adds a line on every figure

Trying to engineer the following in Matlab: ** loop start; y(:,i) = function of x; z(:,i) = function of x; plot(x,y(:,i)) on figure 1, hold all; plot(x,z(:,i)) on figure 2, hold all; ** loop end; add title, legend, etc for figure…
Galaxy5727
  • 45
  • 1
  • 1
  • 4
4
votes
4 answers

make axes invisible or delete plot completely

I have a matlab gui that shall contain 4 plots. The first plot shall be updated if a different file is selected in a list. the other 3 shall only be visible (and be calculated) on request. However I fail to make plots 2-4 invisible after they have…
Matthias Pospiech
  • 3,130
  • 18
  • 55
  • 76
3
votes
1 answer

matplotlib: custom projection for hemisphere/wedge

I'm looking at the custom projection example in the matplotlib gallery -- I'm trying to modify it to plot only the southern hemisphere. I have adjusted the necessary [-pi/2,pi/2] limits to [-pi/2,0]. Now I've been looking at: def…
aim
  • 657
  • 2
  • 12
  • 26
3
votes
3 answers

Mathematica Manipulate Plot: Scaling Axes

Say I have set up the following function f[a,b,c] which I wish to plot while varying a and b f[a_,b_,c_]:=a b c Exp[a b] Manipulate[ Plot [ f[a,b,c], {c,0,1}, PlotRange->{{0,0.05},Automatic} ], {a,0,1}, {b,0,1} ] Is it possible to have the…
CaptanFunkyFresh
  • 159
  • 1
  • 3
  • 8
3
votes
2 answers

What is the most universal axis orientation in a 3D world?

I'm creating a .NET library which generates data for a 3D world, but it doesn't do any of the rendering itself. It falls on XNA, DirectX, OpenGL, etc to render it based on the data (the end coder does this). I want to provide the world data in a…
Andrew Lundgren
  • 1,134
  • 1
  • 12
  • 18
3
votes
1 answer

plotting angularly-wrapped data in cartesian space with matplotlib

Perhaps I've made the title more complicated than the question, but here goes...! I have some angular data, contiguous in the x-y plane, that straddle the 360 => 0 degree line - ie, 358,359,0,1,2.... If I were plotting these and setting: …
Dave
  • 6,184
  • 8
  • 26
  • 28
3
votes
0 answers

plotly 3D graph function cuts off off axis labels in R

I am creating a 3D line plot in plotly in R and I cannot stop the plot funciton from shortening the axes labels. library(plotly) my_data <- read_excel("filedir\\filename") ## Create Axis titles and margins axx <- list( title = "Year-Month" …
Rachel Rotz
  • 101
  • 9
3
votes
1 answer

Pyplot warning when evaluating expression from textbox widget

If I have a pyplot figure with more than one "axes" (as they call them) and there is a textbox in one of them, when writing some special sequences of characters (e.g. *2) I get a warning that states the following: MatplotlibDeprecationWarning:…
3
votes
1 answer

Matplotlib: make objects ignored by axis autoscaling

Is it possible to create a plot object that is ignored by the Axes autoscaler? I often need to add vertical lines, or shade a region of a plot to show the desired range of data (as a frame of reference for the viewer), but then I have to set the…
Demis
  • 5,278
  • 4
  • 23
  • 34
3
votes
0 answers

Moving a plot between figures in matplotlib

I would like to use the axes handle returned by an external function to place the plot objects from that axes within my chosen subplot located in another figure. The format of the external function can't be modified. The below code is a dummy…
Matthew Reid
  • 332
  • 2
  • 9