26#include <QVariantList>
35 : mStatistics( stats )
47 mMinLength = std::numeric_limits<int>::max();
51 mMinority = QString();
52 mMajority = QString();
59 const auto constValues = values;
60 for (
const QString &
string : constValues )
76 testString( value.toString() );
82 mMeanLength = mSumLengths /
static_cast< double >( mCount );
86 QList<int> valueCounts = mValues.values();
90 mMinority = mValues.key( *std::min_element( valueCounts.begin(), valueCounts.end() ) );
94 mMajority = mValues.key( *std::max_element( valueCounts.begin(), valueCounts.end() ) );
103 const auto constValues = values;
104 for (
const QVariant &variant : constValues )
108 testString( variant.toString() );
115void QgsStringStatisticalSummary::testString(
const QString &
string )
119 if (
string.isEmpty() )
128 if ( !mMin.isEmpty() && !
string.isEmpty() )
130 mMin = std::min( mMin,
string );
132 else if ( mMin.isEmpty() && !
string.isEmpty() )
139 if ( !mMax.isEmpty() && !
string.isEmpty() )
141 mMax = std::max( mMax,
string );
143 else if ( mMax.isEmpty() && !
string.isEmpty() )
149 mSumLengths +=
string.length();
150 mMinLength = std::min( mMinLength,
static_cast<int>(
string.length() ) );
151 mMaxLength = std::max( mMaxLength,
static_cast<int>(
string.length() ) );
161 return mValues.count();
163 return mCountMissing;
187 res.reserve( mValues.size() );
188 for (
auto it = mValues.begin(); it != mValues.end(); ++it )
190 res.insert( it.key() );
200 return QObject::tr(
"Count" );
202 return QObject::tr(
"Count (distinct)" );
204 return QObject::tr(
"Count (missing)" );
206 return QObject::tr(
"Minimum" );
208 return QObject::tr(
"Maximum" );
210 return QObject::tr(
"Minimum length" );
212 return QObject::tr(
"Maximum length" );
214 return QObject::tr(
"Mean length" );
216 return QObject::tr(
"Minority" );
218 return QObject::tr(
"Majority" );
QFlags< StringStatistic > StringStatistics
Statistics to be calculated for string values.
StringStatistic
Available string statistics.
@ Max
Maximum string value.
@ Min
Minimum string value.
@ MaximumLength
Maximum length of string.
@ MeanLength
Mean length of strings.
@ Minority
Minority of strings.
@ CountMissing
Number of missing (null) values.
@ Majority
Majority of strings.
@ CountDistinct
Number of distinct string values.
@ MinimumLength
Minimum length of string.
QgsStringStatisticalSummary(Qgis::StringStatistics stats=Qgis::StringStatistic::All)
Constructor for QgsStringStatistics.
static QString displayName(Qgis::StringStatistic statistic)
Returns the friendly display name for a statistic.
void finalize()
Must be called after adding all strings with addString() and before retrieving any calculated string ...
void addString(const QString &string)
Adds a single string to the statistics calculation.
QSet< QString > distinctValues() const
Returns the set of distinct string values.
void addValue(const QVariant &value)
Adds a single variant to the statistics calculation.
QVariant statistic(Qgis::StringStatistic stat) const
Returns the value of a specified statistic.
void calculate(const QStringList &values)
Calculates summary statistics for an entire list of strings at once.
void calculateFromVariants(const QVariantList &values)
Calculates summary statistics for an entire list of variants at once.
void reset()
Resets the calculated values.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.