Skip to content

Commit 4348c0e

Browse files
committed
Replace mentions of hist3d with hist2d throughout the documentation
1 parent 62f580e commit 4348c0e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Plotcli has a --help switch which explains the options available. You can also s
5151

5252
### Types of plots
5353

54-
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.
54+
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.
5555

5656
## Examples
5757

examples/3/data.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#plotcli -x 0,2 -y 1,3 --plotID a,b --type hist3d --plotname example3 --colourgradient white-blue-red
1+
#plotcli -x 0,2 -y 1,3 --plotID a,b --type hist2d --plotname example3 --colourgradient white-blue-red
22

33
-0.290817,0.90909,1.40997,2.20049
44
0.082615,0.855601,1.33542,1.60548

examples/generator.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void multiple()
1212
writeln(help);
1313
foreach( i; iota(1,1000 ) )
1414
{
15-
writeln( "#plotcli -x 0 -y 1 --type hist3d --plotID a" );
15+
writeln( "#plotcli -x 0 -y 1 --type hist2d --plotID a" );
1616
writeln( 0.01*i*rNorm( 1,1 ), " ", 0.01*i*rNorm( 3, 1 ) );
1717
writeln( "#plotcli -x 0 --type hist --plotID b --fill 0.5" );
1818
writeln( rNorm( 0,1 ) );

0 commit comments

Comments
 (0)