Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_fitdistrnegbin.wasp
Title produced by softwareMaximum-likelihood Fitting - Negative Binomial Distribution
Date of computationTue, 13 Nov 2012 23:21:29 -0500
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2012/Nov/13/t13528670675cj3d8wkyc5jpuf.htm/, Retrieved Sun, 28 Apr 2024 22:16:09 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=189226, Retrieved Sun, 28 Apr 2024 22:16:09 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact88
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Maximum-likelihood Fitting - Negative Binomial Distribution] [] [2012-11-14 04:21:29] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
155
0
28
53
30
10
27
38
0
0
152
45
25
38
26
10
24
28
0
0
11
0
4
57
9
0
14
34
29
0
239
25
13
24
17
14
12
148
30
8
64
0
33
28
0
6
25
2
24
14
3
9
53
24
144
13
21
29
13
56
11
1
35
8
37
1
40
17
36
12
15
13
16
49
32
14
3
22
2
39
9
0
79
12
1
4
16
180
0
0
2
19
9
34
0
38
36
0
45
2
11
14
38
0
16
1
13
14
170
3
36
14
9
43
6
36
3
2
29
106
0
6
45
38
18
0
0
0
0




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Gwilym Jenkins' @ jenkins.wessa.net

\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 & 1 seconds \tabularnewline
R Server & 'Gwilym Jenkins' @ jenkins.wessa.net \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=189226&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]1 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'Gwilym Jenkins' @ jenkins.wessa.net[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=189226&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=189226&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 time1 seconds
R Server'Gwilym Jenkins' @ jenkins.wessa.net







ParameterEstimated ValueStandard Deviation
size0.524490298298050.064903296469429
mu27.1162790759633.32833054888948

\begin{tabular}{lllllllll}
\hline
Parameter & Estimated Value & Standard Deviation \tabularnewline
size & 0.52449029829805 & 0.064903296469429 \tabularnewline
mu & 27.116279075963 & 3.32833054888948 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=189226&T=1

[TABLE]
[ROW][C]Parameter[/C][C]Estimated Value[/C][C]Standard Deviation[/C][/ROW]
[ROW][C]size[/C][C]0.52449029829805[/C][C]0.064903296469429[/C][/ROW]
[ROW][C]mu[/C][C]27.116279075963[/C][C]3.32833054888948[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=189226&T=1

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=189226&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
size0.524490298298050.064903296469429
mu27.1162790759633.32833054888948



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
library(MASS)
(f<-fitdistr(x, 'negative binomial'))
xlab <- paste('NegativeBinomial(size=',round(f$estimate[[1]],2))
xlab <- paste(xlab,', mu=')
xlab <- paste(xlab,round(f$estimate[[2]],2))
xlab <- paste(xlab,')')
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,'size',header=TRUE)
a<-table.element(a,f$estimate[1])
a<-table.element(a,f$sd[1])
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'mu',header=TRUE)
a<-table.element(a,f$estimate[2])
a<-table.element(a,f$sd[2])
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')