Home arrow PHP arrow Performing Inferential Statistical Analysis with PHP

Performing Inferential Statistical Analysis with PHP

Statistics aren't just for Excel spreadsheets anymore. If you've been wondering how to use PHP to help you do a basic statistical analysis, keep reading. In this article you'll learn how to use PHP to help you compare data sets.

TABLE OF CONTENTS:
  1. Performing Inferential Statistical Analysis with PHP
  2. Overview of Statistical Comparison
  3. Programming Strategy in PHP
  4. The PHP Code
By: Codex-M
Rating: starstarstarstarstar / 2
October 07, 2009

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

This is the continuation of a two-part article in which we cover the use of PHP to calculate descriptive statistics. In this article, we will go deeper, using PHP to do inferential statistics. This is a completely different area of statistics in the sense that inferential statistics deals with the comparison of data at a certain level of statistical significance.

In other words, if there are at least two data sets that are being analyzed and compared with each other, we are dealing with the inferential side of statistics. What is the importance of doing this in PHP? After all, we can do this using Excel, right?

The short answer to this question is the benefit you gain from doing it in PHP. I'm referring to complete interactivity online using the most common web servers (for example Apache).

It is not simple to upload an Excel worksheet and make it completely interactive and compatible with Apache. PHP, on the other hand, is the main server side scripting language for Apache.

Of course, I emphasized this already in the first part. You can run Excel online, but doing so brings a little bit of complexity to the equation, and may cause security issues.



 
 
>>> More PHP Articles          >>> More By Codex-M
 

blog comments powered by Disqus
   

PHP ARTICLES

- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...
- PHP: Building Concrete Validators
- Sanitizing Input with PHP
- Executing Shell Commands with PHP
- Handling File Data with PHP
- File Security and Resources with PHP
- ArrayObject PHP Class Examples
- ArrayObject PHP Class: An Introduction
- Getting File System Data with PHP
- PHP Tools for Working with the File and Oper...
- Working with the File and Operating System w...
- PHP Proxy Patterns: Completing a Blog


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 11 - Follow our Sitemap

Dev Shed Tutorial Topics: