Skip to content

Commit

Permalink
Replace mentions of hist3d with hist2d throughout the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackEdder committed May 18, 2016
1 parent 62f580e commit 4348c0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Plotcli has a --help switch which explains the options available. You can also s

### Types of plots

Some of the most commonly used types of plots supported by plotcli are: point, line, hist, hist3d and box. Because plotcli is build on ggplotd it supports the whole range of types supported by ggplotd. Therefore, for a complete list you can browse its documentation here: http://blackedder.github.io/ggplotd/geom.html. Any function that starts with geom is a type supported by plotcli. To get the type name you remove the geom from the function name and take the lowercase version. E.g. geomBox results in box, geomHist3D in hist3d etc.
Some of the most commonly used types of plots supported by plotcli are: point, line, hist, hist2d, density and box. Because plotcli is build on ggplotd it supports the whole range of types supported by ggplotd. Therefore, for a complete list you can browse its documentation here: http://blackedder.github.io/ggplotd/geom.html. Any function that starts with geom is a type supported by plotcli. To get the type name you remove the geom from the function name and take the lowercase version. E.g. geomBox results in box, geomHist2D in hist2d etc.

## Examples

Expand Down
2 changes: 1 addition & 1 deletion examples/3/data.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#plotcli -x 0,2 -y 1,3 --plotID a,b --type hist3d --plotname example3 --colourgradient white-blue-red
#plotcli -x 0,2 -y 1,3 --plotID a,b --type hist2d --plotname example3 --colourgradient white-blue-red

-0.290817,0.90909,1.40997,2.20049
0.082615,0.855601,1.33542,1.60548
Expand Down
2 changes: 1 addition & 1 deletion examples/generator.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void multiple()
writeln(help);
foreach( i; iota(1,1000 ) )
{
writeln( "#plotcli -x 0 -y 1 --type hist3d --plotID a" );
writeln( "#plotcli -x 0 -y 1 --type hist2d --plotID a" );
writeln( 0.01*i*rNorm( 1,1 ), " ", 0.01*i*rNorm( 3, 1 ) );
writeln( "#plotcli -x 0 --type hist --plotID b --fill 0.5" );
writeln( rNorm( 0,1 ) );
Expand Down

0 comments on commit 4348c0e

Please sign in to comment.