tags:

views:

765

answers:

3

Below is the sample data format in my CSV file.

date,<options>
YYYY-MM-DD,<values>

Every next morning this CSV file has been updated with next date values. Can I use rrdtool to create graphs, and if so how?

+1  A: 

RRDTool::OO is an excellent module with lots of documentation.

innaM
+1  A: 

The rrdtool tutorial actually starts you out by having you read data points from a text file into rrdtool's database. This should be a good jumping off point for figuring out a solution to your problem.

http://oss.oetiker.ch/rrdtool/tut/rrdtutorial.en.html

phantomdata
+3  A: 

Look at RRD::Simple - simple interface to create and store data in RRD files and look at RRD::Simple::Examples - Examples using RRD::Simple

Space