How to plot Date on x axis and string on Y axis. Text annonation on Data points
Show older comments
Attacched excel sheet has the Date and string. I want to plot Time on x axis and string message on the y axis.
I want Text Annotations plots.
Thanks
5 Comments
Walter Roberson
on 2 Aug 2019
In order to use strings on y axis they must be convertable tonnumeric or encodeable as orderable numeric. You have multiple distinct columns, a different quantity per row, and the strings have no obvious numeric representation. How does
{'Chip
sort relative to
message qpkin
?
Walter Roberson
on 2 Aug 2019
text(datenumber, ycoordinate, 'text to show')
Walter Roberson
on 2 Aug 2019
datacursormode with a custom update function.
Walter Roberson
on 3 Aug 2019
Inside the callback, get axes CurrentPoint. Extract the x from that and find the closest x in the data. Use that to pull out the strings from the table. Return a cell array of character vectors; each entry will become a separate line in the datatip shown.
I am not going to do an implementation for you, as the result is going to look pretty poor. With that data, I believe that the kind of graph that is being proposed is nearly meaningless.
Walter Roberson
on 28 Jan 2020
It is disappointing that the user chose to remove their discussion, making the topic hard to follow.
Answers (1)
Categories
Find more on File Operations 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!