Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_cdfnorm.wasp
Title produced by softwareNormal CDF
Date of computationTue, 01 Apr 2008 09:05:20 -0600
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2008/Apr/01/t1207062372hojkfnewmizw1t7.htm/, Retrieved Mon, 13 May 2024 10:10:42 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=10087, Retrieved Mon, 13 May 2024 10:10:42 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact328
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Normal CDF] [cdf] [2008-04-01 15:05:20] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message




Summary of compuational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135

\begin{tabular}{lllllllll}
\hline
Summary of compuational 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' @ 72.249.127.135 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=10087&T=0

[TABLE]
[ROW][C]Summary of compuational 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' @ 72.249.127.135[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=10087&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=10087&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 compuational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135







CDF Normal Distribution
value1.96
mean0
standard deviation1
probability0.97500210485178

\begin{tabular}{lllllllll}
\hline
CDF Normal Distribution \tabularnewline
value & 1.96 \tabularnewline
mean & 0 \tabularnewline
standard deviation & 1 \tabularnewline
probability & 0.97500210485178 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=10087&T=1

[TABLE]
[ROW][C]CDF Normal Distribution[/C][/ROW]
[ROW][C]value[/C][C]1.96[/C][/ROW]
[ROW][C]mean[/C][C]0[/C][/ROW]
[ROW][C]standard deviation[/C][C]1[/C][/ROW]
[ROW][C]probability[/C][C]0.97500210485178[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=10087&T=1

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

As an alternative you can also use a QR Code:  

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

CDF Normal Distribution
value1.96
mean0
standard deviation1
probability0.97500210485178



Parameters (Session):
par1 = 1.96 ; par2 = 0 ; par3 = 1 ;
Parameters (R input):
par1 = 1.96 ; par2 = 0 ; par3 = 1 ;
R code (references can be found in the software module):
par1 <- as.numeric(par1)
par2 <- as.numeric(par2)
par3 <- as.numeric(par3)
r<-pnorm(par1,par2,par3)
r
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'CDF Normal Distribution',2,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'value',header=TRUE)
a<-table.element(a,par1)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'mean',header=TRUE)
a<-table.element(a,par2)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'standard deviation',header=TRUE)
a<-table.element(a,par3)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'probability',header=TRUE)
a<-table.element(a,r)
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')