2011-10-23 53 views
2

http://support.microsoft.com/kb/213930顯示「如何創建鐘形曲線圖」。我需要使用盡可能接近php的東西來自動執行此操作。真的很感激,如果有人能指出我的一些庫/ API等也許會讓這個容易...如何在PHP中創建鐘形曲線圖

+0

見:本[問題&答案](http://stackoverflow.com/questions/4304765/how-to-generate -a-cumulative-normal-distribution-in-php) – ObscureRobot

+0

那麼一個普通的模型將是一個靜態圖像,其中假設它是完全正常的,而曲線的中心是平均值,每個部分(分別爲68% 95%,當然是99.7%)只是遠離平均值的另一個標準偏差。使用GD庫添加您的標籤:http://php.net/manual/en/book.image.php – Cyclone

回答

6

如果你不想與GD庫,使圖表直接,你可以考慮: jpgraphlibchart

我以前使用過libchart,但從未做過鐘形曲線。

這裏是jpgraph的一個例子,使一個類型的鐘形曲線的:

<?php 
include ("jpgraph/jpgraph.php"); 
include ("jpgraph/jpgraph_bar.php"); 
$databary = array(); 
for ($i=0; $i<32*12; ++$i) 
{ 
    $databary[$i] = 0; 
} 
for ($i=0; $i<100000; ++$i) 
{ 
    $data = rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31)+rand(0,31); 
    $databary[$data] += 1; 
} 
$graph = new Graph(1024,768,'auto'); 
$graph->SetShadow(); 
$graph->SetScale("textlin"); 
$graph->title->Set("Elementary barplot with a text scale"); 
$graph->title->SetFont(FF_FONT1,FS_BOLD); 
$b1 = new BarPlot($databary); 
$b1->SetLegend("Temperature"); 
$graph->Add($b1); 
$graph->Stroke(); 

?> 
+0

甜...我認爲jpgraph將只爲我吃飯。謝謝! – Tathagata