GitXplorerGitXplorer
d

poker-graph

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
01422dc000a00dfad41bdcd46fcc6ac8e25c6f89

plot graphs in a more obvious manner

ddcampbell24 committed 13 years ago
Unverified
9b0c09f142d148c8581c2aa929bb58acd6725f9b

Update doc.go, rename main file.

ddcampbell24 committed 13 years ago
Unverified
1ea811979bfebea874e08087499853e96cadc094

Make the link in doc.go more markdown friendly.

ddcampbell24 committed 13 years ago
Unverified
c88fcd19080314ccab05dd01f38a533379b88632

Initial commit.

ddcampbell24 committed 13 years ago

README

The README file for this repository.

/* poker-graph is a tool for visualizing the log of a poker game.

poker-graph uses gnuplot to generate an interactive graph displaying the scores of each player over the course of all the hands in an ACPC log. poker-graph assumes that the entries in the log represent consective hands and numbers them automatically.

Usage:

graphlog log

Gnuplot graph window commands:

2x<B1>             print coordinates to clipboard using `clipboardformat`
                   (see keys '3', '4')
<B2>               annotate the graph using `mouseformat` (see keys '1', '2')
                   or draw labels if `set mouse labels is on`
<Ctrl-B2>          remove label close to pointer if `set mouse labels` is on
<B3>               mark zoom region (only for 2d-plots and maps).
<B1-Motion>        change view (rotation). Use <ctrl> to rotate the axes only.
<B2-Motion>        change view (scaling). Use <ctrl> to scale the axes only.
<Shift-B2-Motion>  vertical motion -- change xyplane
<wheel-up>         scroll up (in +Y direction).
<wheel-down>       scroll down.
<shift-wheel-up>   scroll left (in -X direction).
<shift-wheel-down>  scroll right.
<control-wheel-up>  zoom in toward the center of the plot.
<control-wheel-down>   zoom out.
<shift-control-wheel-up>  zoom in only the X axis.
<shift-control-wheel-down>  zoom out only the X axis.

Space          raise gnuplot console window
q            * close this plot window

a              `builtin-autoscale` (set autoscale keepfix; replot)
b              `builtin-toggle-border`
e              `builtin-replot`
g              `builtin-toggle-grid`
h              `builtin-help`
l              `builtin-toggle-log` y logscale for plots, z and cb for splots
L              `builtin-nearest-log` toggle logscale of axis nearest cursor
m              `builtin-toggle-mouse`
r              `builtin-toggle-ruler`
1              `builtin-previous-mouse-format`
2              `builtin-next-mouse-format`
3              `builtin-decrement-clipboardmode`
4              `builtin-increment-clipboardmode`
5              `builtin-toggle-polardistance`
6              `builtin-toggle-verbose`
7              `builtin-toggle-ratio`
n              `builtin-zoom-next` go to next zoom in the zoom stack
p              `builtin-zoom-previous` go to previous zoom in the zoom stack
u              `builtin-unzoom`
Right          `builtin-rotate-right` only for splots; <shift> increases amount
Up             `builtin-rotate-up` only for splots; <shift> increases amount
Left           `builtin-rotate-left` only for splots; <shift> increases amount
Down           `builtin-rotate-down` only for splots; <shift> increases amount
Escape         `builtin-cancel-zoom` cancel zoom region

             * indicates this key is active from all plot windows

*/ package documentation