Sponsored Content
Full Discussion: Creating graphs
Top Forums Shell Programming and Scripting Creating graphs Post 302427447 by frustrated1 on Sunday 6th of June 2010 04:57:12 AM
Old 06-06-2010
Creating graphs

Platform: solaris 9 x86


I want to be able to create excel like line graphs with basic input data and use it on a webpage or worst case so I can use it to insert to a document

type of input file I would have, example below

datainput.txt:
Code:
date,requests,failures,success
20100501,80,10,70
20100502,75,5,70
20100503,85,25,60
20100504,66,6,60

I know there are various freeware tools to help but I don't have any experience with them and need some help.

Preferably could someone advise for free ware tool I could use and an example of how to use it graphing the data from input file such as the example above

can you help?
I am used to ksh scripting and the various flavours of unix.
Any help would b appreciated.

Last edited by DukeNuke2; 06-06-2010 at 07:07 AM..
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

CPU graphs in unix

Hi, How to get the CPU graphs to see the performance? I use Linux version. I got some commands in the net. xload and xosview. It's mentioned like below: To start xload, simply open an xterminal on the system and type the following: $ xload &Couple of doubts here .. what is... (0 Replies)
Discussion started by: venkatesht
0 Replies

2. UNIX for Dummies Questions & Answers

multiple graphs on same window

Hi All, I have written a script to get live data after 5 minutes from a remote system and then plot the graph using gnuplot.All this has been working correctly with only one problem where i need to pull all these graphs into one page.I am not able to get this working.I tried reading about... (1 Reply)
Discussion started by: pistachio
1 Replies

3. Post Here to Contact Site Administrators and Moderators

Suggestion: visitor graphs

Perhaps we could think of visitor graphs that would give a sense of both the popularity of the forum and - more importantly - the popularity of Linux and the Open Source operating systems movement. Something similar to what sourceforge has done for their projects: SourceForge.net: Project... (2 Replies)
Discussion started by: figaro
2 Replies

4. Programming

Creating area graphs in jqplot

How can area graphs be created in jqplot? Example can be seen here: dygraphs JavaScript Visualization Library In the example the line graphs and the grid are superimposed on the area graphs. I dont think it is supported out of the box for jqplot. I would normally do this with a double fill: -... (0 Replies)
Discussion started by: figaro
0 Replies

5. Programming

Help with Graphs (BFS mostly)

Okay so I posted a thread about my project before, how I need to create generated word ladders and all that. Now I am to the point where I need to create a method which will find the shortests path between a start word and an end word. For example: startWord: Head endWord: Feet And then a... (3 Replies)
Discussion started by: SilvarHawke
3 Replies

6. Shell Programming and Scripting

Monitoring Graphs using GNUPLOT

Need assistance in getting a monitoring script to create Grpahs Using GNUPLOT using below data. Graph for CPU, MEMORY , NETWORK in png. For memory can we convert the GB TO MB ----system---- ----total-cpu-usage---- ------memory-usage----- -net/total- time |usr sys idl wai hiq... (5 Replies)
Discussion started by: ajayram_arya
5 Replies

7. Red Hat

Do not show graphs cacti

hi installed caci and Snmp connection is established 10.10 (192.168.10.10) SNMP Information System:Hardware: Intel64 Family 6 Model 23 Stepping 6 AT/AT COMPATIBLE - Software: Windows Version 6.1 (Build 7601 Multiprocessor Free) Uptime: 7550665 (0 days,... (2 Replies)
Discussion started by: mnnn
2 Replies
Test::LectroTest::FailureRecorder(3pm)			User Contributed Perl Documentation		    Test::LectroTest::FailureRecorder(3pm)

NAME
Test::LectroTest::FailureRecorder - Records/plays failures for regression testing SYNOPSIS
use Test::LectroTest::Recorder; my $recorder = Test::LectroTest::Recorder->new("storage_file.txt"); my $recorder->record_failure_for_property( "property name", $input_hashref_from_counterexample ); my $failures = $recorder->get_failures_for_property("property name"); for my $input_hashref (@$failures) { # do something with hashref } DESCRIPTION
This module provides a simple means of recording property-check failures so they can be reused as regression tests. You do not need to use this module yourself because the higher-level LectroTest modules will use it for you when needed. (These docs are mainly for LectroTest developers.) The basic idea is to record a failure as a pair of the form [ <property_name>, <input hash from counterexample> ] and Dump these pairs into a text file, each record terminated by blank line so that the file can be read using paragraph-slurp mode. The module provides methods to add such pairs to a recorder file and to retrieve the recorded failures by property name. It uses a cache to avoid repetitive reads. METHODS
new(storage-file) my $recorder = Test::LectroTest::Recorder->new("/path/to/storage.txt"); Creates a new recorder object and tells it to use storage-file for the reading and writing of failures. The recorder will not access the storage file until you attempt to get or record a failure. Thus it is OK to specify a storage file that does not yet exist, provided you record failures to it before you attempt to get failures from it. get_failures_for_property(propname) my $failures = $recorder->get_failures_for_property("property name"); for my $input_hashref (@$failures) { # do something with hashref while (my ($var, $value) = each %$input_hashref) { # ... } } Returns a reference to an array that contains the recorded failures for the property with the name propname. In the event no such failures exist, the array will be empty. Each failure is represented by a hash containing the inputs that caused the failure. If the recorder's storage file does not exist or cannot be opened for reading, this method dies. Thus, you should call it from within an "eval" block. record_failure_for_property(propname, input-hashref) my $recorder->record_failure_for_property( "property name", $input_hashref_from_counterexample ); Adds a failure record for the property named propname. The record captures the counterexample represented by the input-hashref. The record is immediately appended to the recorder's storage file. Returns 1 upon success; dies otherwise. If the recorder's storage file cannot be opened for writing, this method dies. Thus, you should call it from within an "eval" block. SEE ALSO
Test::LectroTest::TestRunner explains the internal testing apparatus, which uses the failure recorders to record and play back failures for regression testing. LECTROTEST HOME
The LectroTest home is http://community.moertel.com/LectroTest. There you will find more documentation, presentations, mailing-list archives, a wiki, and other helpful LectroTest-related resources. It's also the best place to ask questions. AUTHOR
Tom Moertel (tom@moertel.com) COPYRIGHT and LICENSE Copyright (c) 2004-06 by Thomas G Moertel. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2007-08-30 Test::LectroTest::FailureRecorder(3pm)
All times are GMT -4. The time now is 05:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy