Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_fitdistrcauchy.wasp
Title produced by softwareMaximum-likelihood Fitting - Cauchy Distribution
Date of computationFri, 16 Apr 2010 12:04:21 +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/t1271419499l6bhp3dpj0c0myb.htm/, Retrieved Tue, 23 Apr 2024 10:56:04 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=74645, Retrieved Tue, 23 Apr 2024 10:56:04 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywordsb58a;steven,coomans,cauchy,thesis
Estimated Impact256
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Maximum-likelihood Fitting - Cauchy Distribution] [b58a;steven,cooma...] [2010-04-16 12:04:21] [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'RServer@AstonUniversity' @ vre.aston.ac.uk

\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 & 'RServer@AstonUniversity' @ vre.aston.ac.uk \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74645&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]'RServer@AstonUniversity' @ vre.aston.ac.uk[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74645&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=74645&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'RServer@AstonUniversity' @ vre.aston.ac.uk







ParameterEstimated ValueStandard Deviation
location572.13530075110416.5791657834231
scale105.21057686232311.8375334381432

\begin{tabular}{lllllllll}
\hline
Parameter & Estimated Value & Standard Deviation \tabularnewline
location & 572.135300751104 & 16.5791657834231 \tabularnewline
scale & 105.210576862323 & 11.8375334381432 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74645&T=1

[TABLE]
[ROW][C]Parameter[/C][C]Estimated Value[/C][C]Standard Deviation[/C][/ROW]
[ROW][C]location[/C][C]572.135300751104[/C][C]16.5791657834231[/C][/ROW]
[ROW][C]scale[/C][C]105.210576862323[/C][C]11.8375334381432[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74645&T=1

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=74645&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
location572.13530075110416.5791657834231
scale105.21057686232311.8375334381432



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
library(MASS)
(f<-fitdistr(x, 'cauchy'))
xlab <- paste('Cauchy(location=',round(f$estimate[[1]],2))
xlab <- paste(xlab,', scale=')
xlab <- paste(xlab,round(f$estimate[[2]],2))
xlab <- paste(xlab,')')
bitmap(file='test2.png')
qqplot(qcauchy(ppoints(x), location=f$estimate[[1]], scale=f$estimate[[2]]), x, main='QQ plot (Cauchy)', 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,'location',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,'scale',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')