PHP
  Home arrow PHP arrow Page 4 - Implementing Bayesian Inference Using ...
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Mobile Linux 
App Generation ROI 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Implementing Bayesian Inference Using PHP: Part 2
By: developerWorks
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2005-01-12

    Table of Contents:
  • Implementing Bayesian Inference Using PHP: Part 2
  • Defining simple surveys
  • What is parameter estimation?
  • Computing the MLE
  • Graphing the likelihood distribution
  • Algebraic cleverness
  • Bayes estimators
  • Beta distribution sampling model
  • Beta distribution source code
  • Conclusions

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Implementing Bayesian Inference Using PHP: Part 2 - Computing the MLE


    (Page 4 of 10 )

    In the context of surveys with questions having only binary response options, you can model the distribution of responses as a binomial random variable: a variable that can only take on one of two values. Given this probability distribution model, one of the parameters you want to estimate using your survey data is the probability of success for a given question where success (denoted as p) can be defined as the probability that participants will give a 1-coded response. The letter q can be used to denote "failure" (a 0-coded response) and is a probability value equal to 1 - p.

    To see how to compute an MLE of p, imagine that you have the following survey data to base your estimate of p on (the probability of responding "yes"):

    Table 3. Survey data basis of estimate of p


    participantq1
    10
    21
    30
    40
    50

    To estimate p for question 1 using maximum likelihood techniques, you need to try out various values of p to see which one maximizes the conditional probability of the observed results R:

    P(R | pi)

    The results R can be summarized as the proportion of successes k observed among n sample items k/n. From the table above, one in five (or 20 percent) of the participants responded with a 1-coded response. Therefore, to compute the MLE of p, you try out various values of p and see which one maximizes the conditional probability of k/n:

    MLE = max( P(k/n | pi) )

    Given that the distribution of question scores can be modeled as a binomial random variable, you can use the binomial distribution function to calculate the probability of the observed results. The binomial distribution function returns the likelihood of an event occurring $k times in $n attempts, in which the probability of success on a single attempt is $p:

    $likelihood = binomial($n, $k, $p);

    The equation for computing the binomial probability of a particular result k/n given a particular value of p is:

    P(k/n | pi) = nCk * (p)k * (1 - p) (n - k)

    A binomial probability is a product of three terms:

    1. The number of ways of selecting k items from n items: nCk. T
    2. The probability of success raised to an exponent equal to the number of success events involved in the outcome: pk.
    3. The probability of failure raised to an exponent equal to the number of failure events involved in the outcome: 1 - p (n - k).

     

    The code for computing a binomial probability looks like this:

    Listing 1. Computing a binomial probability

      <?php

    # Probability functions ported from Mastering Algorithms
    # With Perl by Macdonald, Orwant, and Hietaniemi

    # choose($n, $k) is the number of ways to choose $k
    # elements from a set of $n elements, when the order
    # of selection is irrelevant.

    function choose($n, $k) {
      $j=1; $result=1;
      if ( ($k > $n) || ($k < 0) ) {
        return 0;
      }
      while ($j<=$k) {
        $result *= $n--;
        $result /= $j++;
      }
      return $result;
    }

    function binomial($n, $k, $p) {
      if ($p == 0) {
        if ($k == 0)
          return 1;
        else
          return 0;
      }
      if ($p == 1) {
        if ($k == $n)
          return 1;
        else
          return 0;
      }
      return choose($n, $k) * pow($p, $k) * pow(1-$p, $n-$k);
    }

    ?>

     

    So to determine the value of $p that maximizes the observed results, you can simply construct a loop where you keep the values of $n and $k fixed on each iteration but vary the probability of success $p for a particular trial (as in the following listing):

    Listing 2. Constructing a loop to determine the value of $p

      <?php

    include "binomial.php";

    $i = 0;
    $n = 5;
    $k = 1;

    for($p = 0.00; $p <= 1.00; $p = $p + 0.05 ) {
      $likelihoods[$i] = binomial($n, $k, $p);
      $parameters[$i]  = $p;
      $i++;
    }

    // Maximum likelihood value
    $mle = max($likelihoods);

    // The p value that results in the maximum likelihood value
    $p   = $parameters[array_search($mle, $likelihoods)];

    ?>

     

    It will be instructive to see a graph of these results.

    More PHP Articles
    More By developerWorks


       · Who uses Bayesian inference these days? It is computationally harder,and it also...
       · what do they use then? i remember that this, was the first things i learned in my...
     

       

    PHP ARTICLES

    - Working With Different Namespaces in PHP 5
    - User Management Explained: Overview
    - Using Namespaces in PHP 5
    - Database Security: Guarding Against SQL Inje...
    - Building a Modular Exception Class in PHP 5
    - Database and Password Security for Web Appli...
    - Handling MySQL Data Set Failures in PHP 5
    - Building Site Registration for Web Applicati...
    - Intercepting Customized Exceptions in PHP 5
    - Securing Your Web Application Against Attacks
    - Sub Classing Exceptions in PHP 5
    - Authentication for Web Application Security
    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
    Stay green...Green IT