Free Statistics

of Irreproducible Research!

Author's title

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 3...

Author*Unverified author*
R Software Modulerwasp_fitdistrnegbin.wasp
Title produced by softwareMaximum-likelihood Fitting - Negative Binomial Distribution
Date of computationTue, 19 Nov 2013 01:33:45 -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/2013/Nov/19/t1384842840190hl4o4mb0gkkj.htm/, Retrieved Fri, 03 May 2024 22:32:09 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=226336, Retrieved Fri, 03 May 2024 22:32:09 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact99
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Maximum-likelihood Fitting - Negative Binomial Distribution] [155 0 28 53 30 10...] [2013-11-19 06:33:45] [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
339
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 time0 seconds
R Server'Herman Ole Andreas Wold' @ wold.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 & 0 seconds \tabularnewline
R Server & 'Herman Ole Andreas Wold' @ wold.wessa.net \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=226336&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]0 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'Herman Ole Andreas Wold' @ wold.wessa.net[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=226336&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=226336&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 time0 seconds
R Server'Herman Ole Andreas Wold' @ wold.wessa.net







ParameterEstimated ValueStandard Deviation
size0.5113411373880130.0629357952759305
mu27.89147287585783.46550132584515

\begin{tabular}{lllllllll}
\hline
Parameter & Estimated Value & Standard Deviation \tabularnewline
size & 0.511341137388013 & 0.0629357952759305 \tabularnewline
mu & 27.8914728758578 & 3.46550132584515 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=226336&T=1

[TABLE]
[ROW][C]Parameter[/C][C]Estimated Value[/C][C]Standard Deviation[/C][/ROW]
[ROW][C]size[/C][C]0.511341137388013[/C][C]0.0629357952759305[/C][/ROW]
[ROW][C]mu[/C][C]27.8914728758578[/C][C]3.46550132584515[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=226336&T=1

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



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')