Question
plotting graph using json object
Consider I have a series of json data as follows,
[{"f":"450.0","a":"746.0"},{"f":"453.0","a":"1119.0"},{"f":"456.0","a":"746.0"}]
with f denoting frequency and a represents acceleration.
How to plot a graph for acceleration in x axis and frequency in y axis ?
How to write a service for the same ?

