2010-05-07 Junichi Satoh <junichi@rworks.jp>

* include/help/ja/help_prediction_source_module.php: Added a missing
	help file.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2675 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2010-05-07 04:08:46 +00:00
parent a34df658ff
commit 949bc8371a
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-05-07 Junichi Satoh <junichi@rworks.jp>
* include/help/ja/help_prediction_source_module.php: Added a missing
help file.
2010-05-06 Raúl Mateos <raulofpandora@gmail.com>
* include/config*.php: Updated year. Updated build.

View File

@ -0,0 +1,30 @@
<?php
/**
* @package Include/help/ja
*/
?>
<h1>ソースタイプ</h1>
<p>
予測モジュールは、2つのタイプのモジュールをサポートします。
一つは、定義された時間間隔に基づく数値データの平均の計算で、もう一つは、定義された時間間隔の 1/2 の間における標準偏差の計算です。
時間間隔が長い場合、予測値が大きくエラー判定の範囲になったり、想定外の予測値を返す結果になることを考慮する必要があります。
これらの 2つのモジュールは、それぞれ <i>generic_data</i> および <i>generic_proc</i> に実装されています。
</p>
<h2>予測値モジュール</h2>
<p>
<b>予測値計算を正しく動作させるためには、少なくとも 1週間のデータが必要です。</b>
予測値の計算は、4つ (t1, t2, t3, t4) のモジュールの値の平均を計算することにより行われます。
t1 1週間前の値、t2 2週間前の値、t3 3週間前の値、t4 4週間前の値です。
</p>
<h2>異常値判断モジュール</h2>
<p>
異常値判断をするためには、値にどれだけばらつきがあるか標準偏差を計算します。
そして、実際の値が計算した標準偏差に収まるかの比較を行います。
</p>