Separate data to plot as multiple lines
5 views (last 30 days)
Show older comments
It has been a while since I have touched matlab, and as such I can't quite figure out how to solve this issue. Essentially, I have data being created to monitor a device. This data is in an excel sheet, and I have imported that excel sheet into matlab. The table is then parsed to only include certain data for creation of each plot. My problem is when plotting the table, which has multiple runs included. An example of such I will be including below:
run time var1
0 0 0
0 1 1
0 2 ...
1 3 ...
1 4 ...
2 5 ...
3 6 50
My question is how would I split this data so that I can plot each run as a seperate line on the same graph? So in this case, it would be a line plot showing the 4 runs (0-3) as separate lines, comparing time to the change in the variables. Thank you.
0 Comments
Accepted Answer
Star Strider
on 22 Aug 2024
I don’t completely understand what you want to do, however I refer you to findgroups and splitapply to start with. There are other approaches, however those might be the easiest to work with. Their documentation pages might also suggest other functions that could be more appropriate.
2 Comments
More Answers (0)
See Also
Categories
Find more on Data Import from MATLAB 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!