From 4348c0e3be50429f150ce93b33556302dd4a0ddd Mon Sep 17 00:00:00 2001 From: BlackEdder Date: Wed, 18 May 2016 07:43:35 +0100 Subject: [PATCH] Replace mentions of hist3d with hist2d throughout the documentation --- README.md | 2 +- examples/3/data.txt | 2 +- examples/generator.d | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b24c69..761b6c8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/3/data.txt b/examples/3/data.txt index 89c1131..e858a55 100644 --- a/examples/3/data.txt +++ b/examples/3/data.txt @@ -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 diff --git a/examples/generator.d b/examples/generator.d index 2cf0187..013814a 100644 --- a/examples/generator.d +++ b/examples/generator.d @@ -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 ) );