23 lines
714 B
C
23 lines
714 B
C
|
|
#pragma once
|
||
|
|
/**
|
||
|
|
* @file t_rule_sample_feature.h
|
||
|
|
* @brief 统计样本的置信区间、特征值
|
||
|
|
* @author your name (you@domain.com)
|
||
|
|
* @version 0.1
|
||
|
|
* @date 2024-02-21
|
||
|
|
*
|
||
|
|
* Copyright: Baosight Co. Ltd.
|
||
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#include <string>
|
||
|
|
#include "mix_cc/sql/make_table.h"
|
||
|
|
using namespace mix_cc::sql;
|
||
|
|
using namespace std::chrono;
|
||
|
|
|
||
|
|
MIX_CC_SQL_MAKE_TABLE(T_RULE_SAMPLE_FEATURE, (std::string, RuleId),
|
||
|
|
(double, left), (double, right), (double, mean),
|
||
|
|
(double, stddev), (double, skewness), (double, kurtosis),
|
||
|
|
(double, variance), (mix_cc::mix_time_t, starttime),
|
||
|
|
(mix_cc::mix_time_t, endtime));
|