I’m trying different kinds of graphs for statistics about my photos.
For example, I wanted to plot the “Frequency of apertures along the years”:
I would like to show the number of photos with each aperture in the plot tip pointer title, for example “5 photos with aperture ƒ/9.6 in2019”. (I don’t know what’s the real number here)
But I didn’t find any way.
I tried with ${d.count} or ${d.frequency} for example, without success.
In general, if you want to access data that is derived from a transform, you do so in a reducer (the output of the transform). "count" is a built-in reducer, but you can implement your own reducers as functions.