Questions tagged [multiple-axes]

196 questions
0
votes
2 answers

Multiple Axis at Runtime in LiveCharts

I'm trying to write a WPF application to plot line charts for series of numbers I have. These numbers are listed in a .CSV file which I will read at run time. Thus, I do not know the number of series I will have, nor the max/min values of each. To…
Sach
  • 10,091
  • 8
  • 47
  • 84
0
votes
1 answer

PlotlyRequestError: No message

I want to plot 2 graphs in the same Figure .. an error appears PlotlyRequestError: No message i did this `import plotly.plotly as py import plotly.graph_objs as go from plotly.offline import init_notebook_mode, iplot init_notebook_mode() …
Mathilde
  • 39
  • 1
  • 7
0
votes
1 answer

How to subplot two alternate x scales and two alternate y scales for more than one subplot?

I am trying to make a 2x2 subplot, with each of the inner subplots consisting of two x axes and two y axes; the first xy correspond to a linear scale and the second xy correspond to a logarithmic scale. Before assuming this question has been asked…
user7345804
0
votes
1 answer

y-axis ticks doesn't look nice powers of 10 when the axis has logarithmic scale in a plot with double y axes

I'm trying to make a plot with two y-axes, both of them logarithmic; Y1 is the left-hand y-axis and Y2 is the right-hand y-axis. Here the values of Y1 are calculated by dividing Y2 values by some_number to be defined in the snippet. The figure does…
Rebel
  • 472
  • 8
  • 25
0
votes
1 answer

Duplicating y axes

I have the below code. In a nutshell, I need to duplicate the bottom x axes so I keep already plotted data (in place) but change the xlim. I have tried set_xlim after plotting the data (just readjusts the data to the new scale (as expected); also…
geekscrap
  • 965
  • 2
  • 12
  • 26
0
votes
0 answers

Highcharts stacked column with 2 axes from same data

I want to have a stacked column chart with one column of data with 4 items. Each item has two measures associated with it, say a percentage of total and a dollar value. For example, Item % $ A 42% $15.00 B 33% …
0
votes
1 answer

Adding bar value to subbar plot when there is a custom tick

I need to add bar value to the right of barh() or top of the plt.bar(). However, I have custom xTicks. How should I do that? So I have 4 subplot that their x or y ticks are customized, following code iterate well but text position is not correct…
behzadb
  • 25
  • 1
  • 5
0
votes
1 answer

Matplotlib, two x-axes labels on multipanel plot

I would like to make a 3 panel plot (three panels vertically stacked on top of each other), but with two x-axis labels, e.g. from here The lower x-axis and top x-axis are applicable to the data in all three panels. fig, (ax1, ax2, ax3, ax4) =…
npross
  • 1,756
  • 6
  • 19
  • 38
0
votes
1 answer

2 y-axes Dumbbell ggplot2

enter image description hereI am quite new to R and programming in general. So please forgive my ignorance, I am trying to learn. I have two sets of data and I would like to plot them against each other. Both have 27 rows and 3 columns; one set is…
Aloft
  • 1
  • 2
0
votes
1 answer

In Python, how to combine multiple axes together?

I have a very complex function that uses matplotlib to generate an axes, in which there are various content like scatter, annotate,quiver, etc. For this reason, I do not want to touch the function, but I can use matplotlib.pyplot.gca() to get that…
Chromatic
  • 143
  • 6
0
votes
0 answers

Matplotlib and four contour plots with reflections in the x- and y-axis

I have four sets of contour data, and I'd like to plot them on the same graph, in the four quadrants. I'd also like the contours to 'reflect' in the same x- and y-axis, i.e. the center of the plot is the origin for all four plots. I have the…
npross
  • 1,756
  • 6
  • 19
  • 38
0
votes
0 answers

How to remove white grids lines and align the axes in dual axes chart in r

I need to plot a y axes on the right(inflation_rate) and another y axes on the left(price) using the data frame below. I have a dataframe which consists of a price and inflation rate over 10 years: Year Price inflation_rate 1 …
R_abcdefg
  • 145
  • 1
  • 11
0
votes
1 answer

python pandas - editing axes tickmarks

You can see the graph below which is from Jupyter. I'd like to edit the tick labels on x-axis which are currently a mess. This problem only occurs after I add the secondary axis. They represent years from 1922 to 2014. I'd like the graph to show…
P. Prunesquallor
  • 561
  • 1
  • 10
  • 26
0
votes
0 answers

How to Select Multiple, Specific Charts to be Re-Scaled in Excel with VBA?

I have some VBA code that allows me to re-scale the axes on several different charts. However, I'm trying to adjust that code so that I can select multiple charts to be re-scaled without having to duplicate the code. A sample of the code I have so…
0
votes
1 answer

Plotting 2 plots in two differrent axes of the same GUI window

I am trying to make two plots in the same GUI figure that has 2 different axes. I would like one plot in one axes whereas the next one in the other. However, both my plots are generated from a single function, which I call in the GUI with a push…
Rudstar
  • 101
  • 2