Salut à vous,
Je vais passer pour un fainéant doublé d'un noob en programmation, mais comme c'est simple ça devrait être court.
Voici un algorithme de rating efficient transcris en Ruby :
Où pos le nombre de ratings positif, n le nombre de ratings total, et power réfèrant au pouvoir statistique.
Code :
require 'statistics2' def ci_lower_bound(pos, n, power) if n == 0 return 0 end z = Statistics2.pnormaldist(1-power/2) phat = 1.0*pos/n (phat + z*z/(2*n) - z * Math.sqrt((phat*(1-phat)+z*z/(4*n))/n))/(1+z*z/n) end
|
Comme porté ce code sous php ? Qu'en est-il de statistics2 ?
---------------
Feed-back hahahafr Achat/Vente