How to plot several sets of data?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
There are 3 sets of data. Each set of data has 5 columns one column is bacteria counts and another is the day. How would you plot the day vs the bacteria counts for all three sets of data?
Answers (1)
Star Strider
on 25 Jun 2014
I would use subplot. I don’t know how your data are organized otherwise, so I can’t be more specific than that.
For example, if your data sets are Data1...Data3, the days are in column 1 and the counts are in column 2, this would work:
figure(1)
subplot(3,1,1)
plot(Data1(:,1), Data1(:,2))
subplot(3,1,2)
plot(Data2(:,1), Data2(:,2))
subplot(3,1,3)
plot(Data3(:,1), Data3(:,2))
6 Comments
Dustin
on 25 Jun 2014
Joseph Cheng
on 25 Jun 2014
subplot(3,1,1) means it will setup a subplot 3 rows by 1 column and set position 1. If you check the link Star Strider has for subplot it does a good job at explaining how to use subplot.
Dustin
on 25 Jun 2014
Star Strider
on 25 Jun 2014
Thank you Joseph!
Joseph Cheng
on 25 Jun 2014
? you're the one that answered. I just happened to swing by during my usual progress bar boredom.
Star Strider
on 25 Jun 2014
True, but I appreciate your contribution. I was away for a few minutes.
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!