Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software ModuleRscript (source code is shown below)
Title produced by softwareR console
Date of computationTue, 26 May 2009 09:51:47 -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/2009/May/26/t1243353108y25hekmrslqpxbq.htm/, Retrieved Sat, 04 May 2024 16:34:49 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=40385, Retrieved Sat, 04 May 2024 16:34:49 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact101
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [R console] [] [2009-05-26 15:51:47] [b768c7adc2675864c15627b87ad9ef22] [Current]
Feedback Forum

Post a new message
Dataseries X:
0.766781122695514	-0.245671433605206
0.972852174270222	0.597390993475765
-0.476234229396003	-0.336965014926220
0.9355639899794	0.939422498779358
-1.48695807330784	-0.514419259628993
2.11825428000932	-0.854489290447694
0.653349406580426	-0.564583678365797
-1.44801146505338	-0.454375181276264
0.722585159871966	1.33596790328898
0.762603730020985	1.82651228645199
1.5733374865557	0.289915402683504
0.257860930774053	-0.736691759773597
0.58460008302765	-0.793502216030982
0.276060872756995	0.607278879260041
0.0175703262332069	-0.847668697341842
-0.7310054463972	-0.386474103466764
-1.76714738563002	0.0806673458515986
0.396879810705509	-0.104480011386748
0.181788435518932	2.54434966787375
-0.0513651269394388	-0.751779575641183
-1.05698638464117	-2.20523900777421
0.987150240798068	0.0195874611172706
0.943910884121875	0.0352596622037065
-1.24642539039475	-0.522395438690437
-1.76115194448516	1.08640862001910
-2.41842761933313	-0.263308751712359
2.26885052911252	-0.161687465804703
0.94533025333108	-0.769744818159348
-0.854504052495108	-0.654607529207941
-0.0770301798597363	0.777444962012808
-0.134209732998638	1.23838673755852
-0.272898636174546	0.613080126880372
-0.994871898015059	-1.46083059371957
-0.228677058933129	-0.716164401828262
-1.06223275785171	-0.456908718529247
-3.31256710889916	-1.53176630679700
1.66949741829633	0.584812933914438
-0.795360210208215	-0.375590130633768
0.458708549389894	-1.73342519204413
-0.405487670237342	-0.429603766444872
-1.14224011743244	1.28329863526918
0.477227077577721	0.151779078506073
1.04006059543272	1.42850751831648
-0.0154168443783325	-0.380840847838030
0.354352072895729	-1.60366893280962
-1.63336689147224	-0.64442813482179
0.110286702676502	-0.787155765036088
0.673961496450731	-0.266406602739612
-0.294512723532227	2.59682011678503
-0.271874152812354	-0.423132963010057
> first_number = 5

> second_number = 7

> strpar = 'hello'

> {
+     myfun <- function(x, y) {
+             x + y
+         }
+ 
+     plot(RCx, main = 'main title', xlab = 'my xlab', ylab = 'my ylab')
+      .... [TRUNCATED] 
[1] 12
Parameters (Session):
par1 = 5 ; par2 = 7 ; par3 = hello ;
Parameters (R input):
R code (body of R function):
{
myfun <- function(x, y) {
x + y
}

plot(x, main = "main title", xlab = "my xlab", ylab = "my ylab")


hist(x[, 1], main = "my histogram")


pairs(x, main = "pairs plot")

print(myfun(par1, par2))
}