Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pyevolve-graph(1) [debian man page]

PYEVOLVE-GRAPH(1)						  PYEVOLVE-GRAPH						 PYEVOLVE-GRAPH(1)

NAME
pyevolve-graph - graphical plotting tool for Pyevolve SYNOPSIS
pyevolve-graph [options] DESCRIPTION
This manual page documents briefly the pyevolve-graph command, a graphical plotting tool for programs based on Pyevolve. To use this pro- gram, you must have python-matplotlib and python-sqlite installed. GENERAL OPTIONS
Pyevolve-pygraph supports the following options: -h, --help show a brief summary of available options and exit -f FILENAME, --file=FILENAME Database file to read from. default is ./pyevolve.db. -i IDENTIFY, --identify=IDENTIFY The identify of evolution. -o OUTFILE, --outfile=OUTFILE Write the graph image to a file. Don't specify an extension, just the filename. The file will be written in PNG format by default, but this can be changed using the --extension or -e options. -e EXTENSION, --extension=EXTENSION Graph image file format. Supported options (formats) are all those supported by python-matplotlib. Currently, these should be: EMF, EPS, PDF, PNG, PS, RAW, RGBA, SVG, SVGZ. Default is PNG. -g GENRANGE, --genrange=GENRANGE This is the generation range of the graph. For example, 1:30 would denote an interval between 1 and 30. -c COLORMAP, --colormap=COLORMAP Sets the Color Map for the graph types -8 and -9. Some options are: summer, bone, gray, hot, jet, cooper, spectral. The default is jet. -m,--minimize Sets the 'Minimize' mode. Default is the Maximize mode. This option makes sense if you are minimizing your evaluation function. -0 Write all standard graphs to file. Equivalent to specifying -1 -2 -3 -4 -5. -1 Error bars graph (raw scores). -2 Error bars graph (fitness scores). -3 Max/min/avg/std. dev. graph (raw scores). -4 Max/min/avg graph (fitness scores). -5 Raw and Fitness min/max difference graph. -6 Compare best raw score of two or more evolutions. You must specify the identify as a comma-separated list with the --identify or -i options. The maximum is 6 items. -7 Compare best fitness score of two or more evolutions. You must specify the identify as a comma-separated list with the --identify or -i options. The maximum is 6 items. -8 Show a heat map of population raw score distribution between generations. -9 Show a heat map of population fitness score distribution between generations. EXAMPLES
The following are some examples on how to use pyevolve-graph: 1. Output a graph for identify 'ex1' in PNG format (default) to file 'graph_ex1.png': pyevolve-graph -i ex1 -1 -o graph_ex1 2. Output a graph for identify 'ex1' to the PDF file 'graph_ex1.pdf': pyevolve-graph -i ex1 -1 -o graph_ex1 -e pdf 3. This command will plot the evolution of the generations between 10 and 20: pyevolve-graph -i ex1 -1 -g 10:20 4. Use -m to indicate that you have minimized the evaulation function: pyevolve_graph.py -i ex1 -1 -m 5. Specify an identify list for the comparison output options -6 and -7: pyevolve_graph.py -i ex1_run1,ex1_run2,ex1_run3 -6 Fore more examples on how to use pyevolve-graph, including sample images, users are recommended to install the python-pyevolve-doc package. SEE ALSO
/usr/share/doc/python-pyevolve/examples Contains many examples. AUTHOR
pyevolve-graph was written by Christian S. Perone <christian.perone@gmail.com>. This manual page was written by Christian Kastner <debian@kvr.at> for the Debian project (and may be used by others). pyevolve_graph 2010-05-10 PYEVOLVE-GRAPH(1)

Check Out this Related Man Page

HOBBITGRAPH.CGI(1)					      General Commands Manual						HOBBITGRAPH.CGI(1)

NAME
hobbitgraph.cgi - CGI to generate Xymon trend graphs SYNOPSIS
hobbitgraph [options] DESCRIPTION
hobbitgraph.cgi is invoked as a CGI script via the hobbitgraph.sh CGI wrapper. hobbitgraph.cgi is passed a QUERY_STRING environment variable with the following parameters: host Name of the host to generate a graph for service Name of the service to generate a graph for disp Display-name of the host, used on the generated graphs instead of hostname. graph Can be "hourly", "daily", "weekly" or "monthly" to select the time period that the graph covers. first Used to split multi-graphs into multiple graphs. This causes hobbitgraph.cgi to generate only the graphs starting with the "first'th" graph and continuing for "count". count Number of graphs in a multi-graph. upper Set the upper limit of the graph. See rrdgraph(1) for a description of the "-u" option. lower Set the lower limit of the graph. See rrdgraph(1) for a description of the "-l" option. graph_start Set the starttime of the graph. This is used in zoom-mode. graph_end Set the end-time of the graph. This is used in zoom-mode. action=menu Generate an HTML page with links to 4 graphs, representing the hourly, weekly, monthly and yearly graphs. Doesn't actually gen- erate any graphs, only the HTML that links to the graphs. action=selzoom Generate an HTML page with link to single graph, and with JavaScript code that lets the user select part of the graph for a zoom-operation. The JavaScript invokes hobbitgraph.cgi with "action=showzoom" to generate the zoomed graph webpage. action=showzoom Generate HTML with a link to the zoomed graph image. This link goes to an "action=view" invocation of hobbitgraph.cgi. action=view Generate a single graph image. OPTIONS
--config=FILENAME Loads the graph configuration file from FILENAME. If not specified, the file $BBHOME/etc/hobbitgraph.cfg is used. See the hobbit- graph.cfg(5) for details about this file. --env=FILENAME Loads the environment settings defined in FILENAME before executing the CGI. --rrddir=DIRECTORY The top-level directory for the RRD files. If not specified, the directory given by the BBRRDS environment is used. --save=FILENAME Instead of returning the image via the CGI interface (i.e. on stdout), save the generated image to FILENAME. --debug Enable debugging output. ENVIRONMENT
QUERY_STRING Provided by the webserver CGI interface, this decides what graph to generate. FILES
hobbitgraph.cfg: The configuration file determining how graphs are generated from RRD files. SEE ALSO
hobbitgraph.cfg(5), xymon(7), rrdtool(1) Xymon Version 4.2.3: 4 Feb 2009 HOBBITGRAPH.CGI(1)
Man Page