Trees | Indices | Help |
|
---|
|
This program computes the average correlation coefficient and the kendall tau rank coefficient between experiment and prediction samples. Samples are randomly drawn from gaussian distribution centered on each experimental data point with given error.
The algorithm used in this program is based on the work by Scott P. Brown, Steven W. Muchmore, Philip J. Hajduk Drug Discovery Today, Vol. 14, No. 7-8., pp. 420-427
Copyright Schrodinger, LLC. All rights reserved.
|
|||
|
|||
|
|||
|
|
|||
__package__ =
|
|
Computes the average Kendall tau rank correlation coefficient between experiment and prediction samples. num_sample independent data for each experiment and prediction are sampled from gaussian distribution with experiment_sigma and prediction_sigma error. :param experiment: sequence of experiment data :param experiment_sigma: experimental error :param prediction_sigma: prediction error :param num_sample: number of samples :return: average_tau, sigma_tau |
Computes the average correlation coefficient between experiment and prediction samples. num_sample independent data for each experiment and prediction are sampled from gaussian distribution with experiment_sigma and prediction_sigma error. :param experiment: sequence of experiment data :param experiment_sigma: experimental error :param prediction_sigma: prediction error :param num_sample: number of samples :return: <R>, sigma_R, <R^2>, sigma_R^2, <R^2_signed>, sigma_R^2_signed |
Computes root mean square error between experiment and prediction. Averages of experiment and prediction are aligned before RMSE computation. :param experiment: sequence of experiment data :param prediction: sequence of prediction data :return: root_mean_square_error between experiment and prediction |
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue May 2 06:32:44 2017 | http://epydoc.sourceforge.net |