What I’m trying to do
I have bunch of notes, each with inline metadata “timestamp”, “duration”, and “number”.
“timestamp” is when the note was created
“duration” is in the format “1h 5min”. These will always be increasing with every new note but the amount of increase will not be the same
“number” can be anything between a range, let’s say, from 0 to 10
Example -
Note-1
timestamp:: 2023-01-01 00:00:00-4:00
duration:: 1hr 30min
number:: 10
Note-2
timestamp:: 2023-02-02 00:00:00-4:00
duration:: 1hr 45min
number:: 3
Note-2
timestamp:: 2023-02-04 00:00:00-4:00
duration:: 3hr
number:: 5
and so on…
Is there a plugin that would make a line chart with X axis being the duration and Y axis being the number?
X, Y
1.5, 10
1.75, 3
3, 5
Thanks