В boost, можно ли удалить заданный boost::accumulators::tag
динамически с accumulator_set
?Удалить или изменить аккумуляторы :: tag from accumulator_set
typedef boost::accumulators::features <
boost::accumulators::tag::count,
boost::accumulators::tag::max,
boost::accumulators::tag::min,
boost::accumulators::tag::mean,
boost::accumulators::tag::variance,
boost::accumulators::tag::skewness,
boost::accumulators::tag::kurtosis,
> StatisticalFeatures;
accumulator_set<double, boost::accumulators::stats<StatisticalFeatures>> acc;
Или, наоборот, назначить новый boost::accumulators::stats
контейнер в accumulator_set
, где можно указать некоторые boost::accumulators::tag
из строки. Например, если строка min,max,mean
, то я хочу создать новый accumulator_set<double,bost::accumulators::stats<boost::accumulators::tag::min,boost::accumulators::tag::max,boost::accumulators::tag::mean>> acc
.
Заранее благодарим за ваш совет.