Clear Filters
Clear Filters

Stackedplot -grahps spaced evenly

1 view (last 30 days)
Kriti Salwan
Kriti Salwan on 29 Dec 2021
I have created a plot of a vs t using stacked plot function but my plot is looking very closely spaced yo each other.How I can get a plot more clear and evenly spaced for better understanding .
  1 Comment
Adam Danz
Adam Danz on 29 Dec 2021
This is a screenshot of the attached figure.
Why are you using stackedplot? Are you sure this is the right figure?

Sign in to comment.

Answers (1)

Sai Sumanth Korthiwada
Sai Sumanth Korthiwada on 28 Feb 2022
Edited: Sai Sumanth Korthiwada on 28 Feb 2022
As per my understanding, a plot is created using "stackedplot" function, and the plot looked very closely spaced to each other.
To make a "stackedplot" more clear, "YLimits" property from "AxesProperties" of an object of "stackedplot" can be used to view the curve zoomed in horizontal direction, so that the fluctuations or observations are more clearly visible.
So, Increase the range of Y-axis to get a clearer figure.
For instance, observe the following code:
load outdoors
s = stackedplot(outdoors)
s.AxesProperties %displays the properties available
s.AxesProperties(1).YLimits = [0 100];
%if the current Ylimit is [0 100] try increasing the Y-axis range to [0 200] or
% more to get a clear and more evenly spaced figure
s.AxesProperties(1).YLimits = [0 200];
where s is an object of "stackedplot". As the "YLimits" range is increased, the figure appears more evenly spaced.
You can refer to stackedplot MathWorks documentation page for more info on "Stacked plot of several variables with common x-axis".

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!