Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software ModuleRscript (source code is shown below)
Title produced by softwareR console
Date of computationFri, 29 Aug 2008 05:27:05 -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/Aug/29/t1220009227ysnvda53fdkj4kc.htm/, Retrieved Thu, 16 May 2024 00:28:38 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=14284, Retrieved Thu, 16 May 2024 00:28:38 +0000
QR Codes:

Original text written by user:no comments
IsPrivate?No (this computation is public)
User-defined keywordskey1,key2
Estimated Impact263
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [R console] [my R test (trivar...] [2008-08-29 11:27:05] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
-1.07240773245511
0.275831489797754
-0.0313300818739533
0.349101677131186
-0.594415167447343
-0.114105089040443
1.98918409421242
-1.66850369802297
-0.989995816491986
0.883917509539948
Dataseries Y:
0.696237343829125
0.331145278643817
0.787001580931246
0.878924465971068
0.0773930151481181
0.959075538441539
0.309206733014435
0.78779518743977
0.862379015656188
0.343431321205571
Dataseries Z:
0.134382926465733
0.815875458604857
0.626715166562762
-0.099749775569483
-1.25605215977127
0.511233328342007
-0.220921865793148
-0.884670569931156
-0.61888892192502
-0.952342075355952
> first_number = 5

> second_number = 7

> strpar = 'hello'

> {
+     RCx <- rnorm(10)
+     RCy <- runif(10)
+     RCz <- rnorm(10)
+     myfun <- function(x, y) {
+             x + y
+         }
+ 
+     prin .... [TRUNCATED] 
[1] 12
[1] 'hello'
 [1] -1.07240773  0.27583149 -0.03133008  0.34910168 -0.59441517 -0.11410509
 [7]  1.98918409 -1.66850370 -0.98999582  0.88391751
[1] -0.4059523
[1] 0.1939197
Parameters (Session):
par1 = 5 ; par2 = 7 ; par3 = hello ;
Parameters (R input):
R code (body of R function):
{
x <- rnorm(10)
y <- runif(10)
z <- rnorm(10)
myfun <- function(x, y) {
x + y
}
print(myfun(par1, par2))
print(par3)
print(x)
print(cor(x, y))
print(cor(x, z))
}