I've got a record of every time my 3 month old was fed (and how much) almost since birth. So far feedings have been completely driven by hunger. Now, we'd like to try easing into a schedule.
I'd like to be able to visualize when feedings typically occur during the day. I'm thinking some kind of... scatter plot maybe? Where X is time of day (12:00am-11:59pm) and Y is total ounces? Maybe that's not the best way though. Can anyone help me out?
The data looks like this:
{
"_index": "formula",
"_type": "_doc",
"_id": "703",
"_version": 1,
"_score": null,
"_source": {
"Time": "8/30/19 4:49 PM",
"Amount": "5.6 oz.",
"Note": "",
"Timestamp": 1567198140000,
"Ounces": 5.6
},
"fields": {
"Timestamp": [
"2019-08-30T20:49:00.000Z"
]
},
"sort": [
1567198140000
]
}
My drawing is a bit childish, but this is what I imagine it looking like... I just have no idea how to create it: 
Also, I guess I should add that I have a script to export, parse, munge, and then load each datapoint into elasticsearch, so if I need to tweak or add something to each datapoint to make this easier, that's not a problem.

