Skip to content

Commit 1244739

Browse files
author
cfarmer
committed
[FEATURE] adds 3 new classification algorithms, including natural breaks (jenks), standard deviations, and a 'pretty' algorithm for generating 'human readable' class breaks
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14401 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent d375c5b commit 1244739

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ static QList<double> _calcPrettyBreaks( double minimum, double maximum, int clas
351351
// from the R statistical programming language.
352352
// Code ported from R implementation from 'labeling' R package
353353
//
354-
// Computes a sequence of about 'classes' equally spaced 'round' values
355-
// which cover the range of of values from 'minimum' to 'maximum'.
354+
// Computes a sequence of about 'classes' equally spaced round values
355+
// which cover the range of values from 'minimum' to 'maximum'.
356356
// The values are chosen so that they are 1, 2 or 5 times a power of 10.
357357

358358
QList<double> breaks;

0 commit comments

Comments
 (0)