How to make this plot
10 views (last 30 days)
Show older comments
Hello! I'd like an help to find the right way to make the following plot. I have a logical matrix, with values true (1) and false (0). This matrix has dimensions (P, T). Let's say T is the time window vector, and P represents my variables. I want to plot their value for each time window, by this way:
- If the value of the cell is true, then it is marked by a green circle
- If the value of the cell is false, then it is marked by a red circle
The result should be a column of circles, green and red, for each column of the matrix, so i should obtain T columns of circles, one after the another. The Y-axis should have the number of P-variables as measure, while X-axis should have a vector of dates, like the following one: T_1,T_2,......,T_155 (how can i name it in this way?)
For istance, i have P=80 variables. For each of these 80 variables, i should plot the value they assume in each time window, so i should have a column of 80 circles, for a fixed time window.
2 Comments
Answers (1)
Paridhi Yadav
on 31 May 2018
Hey, you can extract the data of P in two different vectors, one with all true(1) value and one with false(0) and plot both of them one over other using "hold on".
0 Comments
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!