Plot Highly Condensed Dataset
1 view (last 30 days)
Show older comments
So I have a sample dataset which I need to plot using Matlab. The columns look like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160996/image.jpeg)
Obviously due to this data set the plot looks exceptionally condensed.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160997/image.jpeg)
Now I am totally new to plotting and statistical data processing. What can be done to make the data plot more visually comparable/perusal-able (plotting at larger intervals?)?
Here's the code I wrote:
fid=fopen('me.dat', 'r');
s=textscan(fid,'%s %s %f %f', 'headerlines', 1);
fclose(fid);
a=s{1};
b=s{2};
c=s{3};
d=s{4};
plot(c,d)
Thanks.
Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots 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!