Skip to content

Commit cb0cc26

Browse files
author
cfarmer
committedOct 18, 2010
[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@14401 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent b12fefe commit cb0cc26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp

Lines changed: 2 additions & 2 deletions
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)
Please sign in to comment.