| 関数名 Function name | 機能・用途 Purpose | 
| fitting_line | データを直線でフィットする。
        【利用は非推奨】 Fit a data by a straight line. [Discouraged to use] | 
| fitting_line2 | データを直線でフィットする。誤差の推定方法を変えた改良版。 Fit a data by a straight line. An improved version where the error estimation is updated. | 
| fitting_line_weight | データを直線で重み付きフィットする。 Fit a data by a straight line with weights. | 
| fitting_line_given_errors | 個々のデータの誤差(前もって与えられているものとする)で重み付けして
        データを直線フィットする。 Fit a data by a straight line using given errors of individual samples as the weight. | 
| fitting_quadratic | データを2次関数でフィットする。 Fit a data by a quadratic function. | 
| fitting_exp | データを指数関数でフィットする。 Fit a data by an exponentail function. | 
| determination_coefficient | データの直線フィッティングにおける決定係数を計算する。 Calculate the coefficient of determination for the straight line fitting of data. | 
| 関数名 Function name | 横軸の値\(x\)の誤差 Errors in the values of lateral axis \(x\) | 縦軸の値\(y\)の誤差 Errors in the values of vertical axis \(y\) | フィッティングにおける各データの重み Weights of individual data in the fitting | 傾きと切片の推定誤差の評価方法 Error estimations for the slope and intercept | 
| fitting_line | 無いものとする。 Assumed to have no error. | 不明。全てのデータで同じであると仮定する。 Unknown, and assumed to be homogeneous among all the data. | 全てのデータを同じ重みでフィッティングする。 Fit all the data with uniform weights. | データと直線との残差を個々のデータの誤差と見なしてして計算する。 Computed using the residuals between the data and fitting line as the estimates of errors of individual data. | 
| fitting_line2 | 無いものとする。 Assumed to have no error. | 不明。全てのデータで同じであると仮定する。 Unknown, and assumed to be homogeneous among all the data. | 全てのデータを同じ重みでフィッティングする。 Fit all the data with uniform weights. | データと直線との残差の2乗和を「データ数\(-2\)」で割った値を
        個々のデータの誤差と見なしてして計算する。 Computed using the square summation of the residuals between the data and fitting line, divided by “the number of data \(-2\)’, as the estimates of errors of individual data. | 
| fitting_line_weight | 無いものとする。 Assumed to have no error. | 不明。 Unknown. | データ毎に重みを変える(各データの重みをユーザが指定)。 Weights of individual data are different and given by the user. | データと直線との残差を個々のデータの誤差と見なしてして計算する。 Computed using the residuals between the data and fitting line as the estimates of errors of individual data. | 
| fitting_line_with_errors | 無いものとする。 Assumed to have no error. | 既知であるものとし、ユーザが与える。 Assumed to be known, and given by the user. | 誤差の逆数の2乗で重み付けしてフィッティングする。 Square inverses of the errors are used as the weights in the fitting. | 与えられた個々のデータの誤差を用いて計算する。 Computed with the given errors of individual data. |