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)???
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…
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…
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…
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…
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?
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] =…
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 =…
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…
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…
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…
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…
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…
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…