JD.
JD.

Reputation: 15551

Building data/statistical graphs from postgres data?

I have a single table which stores bandwidth usage on the network over a period of time. One column will contain the date time (primary key) the bandwidth is recorded and the other column will contain that actual bandwidth value.

I need to generate some graphs (pie charts, bar graphs etc) and other statistical graphs from this data. However, I would like to do generation of the data on the database server rather than return all the data to the client for it to process and generate the graph.

My question is are there any libraries or techniques which help do this in Postgres?

Upvotes: 1

Views: 942

Answers (1)

solaimuruganv
solaimuruganv

Reputation: 29727

this can be achieved by R and PL/R graphical development packages.

refer

Upvotes: 2

Related Questions