We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23dd501 commit 2aa2040Copy full SHA for 2aa2040
src/core/qgsstatisticalsummary.cpp
@@ -67,7 +67,7 @@ void QgsStatisticalSummary::calculate( const QList<double> &values )
67
68
mMean = mSum / mCount;
69
70
- if ( mStatistics & QgsStatisticalSummary::StDev )
+ if ( mStatistics & QgsStatisticalSummary::StDev || mStatistics & QgsStatisticalSummary::StDevSample )
71
{
72
double sumSquared = 0;
73
Q_FOREACH ( double value, values )
0 commit comments