Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_fitdistrpoisson.wasp
Title produced by softwareMaximum-likelihood Fitting - Poisson Distribution
Date of computationFri, 16 Apr 2010 11:58:40 +0000
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2010/Apr/16/t1271419157usf73hx8f2enz5b.htm/, Retrieved Fri, 29 Mar 2024 16:00:31 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=74642, Retrieved Fri, 29 Mar 2024 16:00:31 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywordsB58A,poisson,steven,coomans,thesis
Estimated Impact213
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Maximum-likelihood Fitting - Poisson Distribution] [B58A,poisson,stev...] [2010-04-16 11:58:40] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
610
544
471,4
696,675
707,9
524,075
471,75
526,625
390,2
451,5
681,875
546,5
488,5
488,5
613,125
439
439
460,625
657,125
570,625
804,575
443
745,775
667,125
590,55
683,125
818,26
679,7
679,7
535,75
579
700,75
567,5
531,25
781,25
572,5
591,5
548,75
744
634,25
634,25
313,25
674,25
769,55
758,25
488,775
690,45
559,5
687,1
796,5
756,65
794,5
0
387,5
683
762,25
742
731,5
643
573,44
574,751
440,025
350,75
562,75
642,251
411
646
558,525
647,15
591
797
642,25
726,275
652,75
678,75
602,25
689,775
393
580,525
462,25
725,65
501
675
691
613,496
688,25
518,8
386,275
491,35
269,5
379
375,25
337,5
296
375
399,525
336
483,5
370,25
625,5
736,75
496,05
740,5
690,525
568,75
341,1
519,75
408,75
278,35
217
266
319,025
454,75
378,3
509,575
453,75
252
187,525
401,5
403,75




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'Sir Ronald Aylmer Fisher' @ 193.190.124.24

\begin{tabular}{lllllllll}
\hline
Summary of computational transaction \tabularnewline
Raw Input & view raw input (R code)  \tabularnewline
Raw Output & view raw output of R engine  \tabularnewline
Computing time & 2 seconds \tabularnewline
R Server & 'Sir Ronald Aylmer Fisher' @ 193.190.124.24 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74642&T=0

[TABLE]
[ROW][C]Summary of computational transaction[/C][/ROW]
[ROW][C]Raw Input[/C][C]view raw input (R code) [/C][/ROW]
[ROW][C]Raw Output[/C][C]view raw output of R engine [/C][/ROW]
[ROW][C]Computing time[/C][C]2 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'Sir Ronald Aylmer Fisher' @ 193.190.124.24[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74642&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=74642&T=0

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'Sir Ronald Aylmer Fisher' @ 193.190.124.24







ParameterEstimated ValueStandard Deviation
lambda549.446652.13979486945205

\begin{tabular}{lllllllll}
\hline
Parameter & Estimated Value & Standard Deviation \tabularnewline
lambda & 549.44665 & 2.13979486945205 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74642&T=1

[TABLE]
[ROW][C]Parameter[/C][C]Estimated Value[/C][C]Standard Deviation[/C][/ROW]
[ROW][C]lambda[/C][C]549.44665[/C][C]2.13979486945205[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74642&T=1

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=74642&T=1

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

ParameterEstimated ValueStandard Deviation
lambda549.446652.13979486945205



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
library(MASS)
(f<-fitdistr(x, 'poisson'))
xlab <- paste('Poisson(lambda=',round(f$estimate[[1]],2))
xlab <- paste(xlab,')')
bitmap(file='test2.png')
qqplot(qpois(ppoints(x), lambda=f$estimate[[1]]), x, main='QQ plot (Poisson)', xlab=xlab )
grid()
dev.off()
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Parameter',1,TRUE)
a<-table.element(a,'Estimated Value',1,TRUE)
a<-table.element(a,'Standard Deviation',1,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'lambda',header=TRUE)
a<-table.element(a,f$estimate[1])
a<-table.element(a,f$sd[1])
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')