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 computationWed, 30 May 2012 08:26:22 -0400
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2012/May/30/t1338380782cp13087xkrgkbuc.htm/, Retrieved Fri, 03 May 2024 15:54:23 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=168010, Retrieved Fri, 03 May 2024 15:54:23 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact108
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [R console] [test] [2012-05-30 12:26:22] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
1.08971548390694	-1.06751356291616
-0.307057162718876	0.347930736917433
0.419073571137589	0.23263624909925
-0.156497930517576	-1.16661603557741
1.85445671490418	-1.24561312112245
0.0288283422151386	-0.890179294506195
-0.287153411757677	-0.463297344440305
0.72621702608629	0.221026064020961
0.136027789413768	0.815458633913317
-0.275157484828762	-1.3916515340616
3.70930071009225	0.442506506893381
0.912821640463382	-0.818201290722183
0.999228315123469	-0.207296540351068
-1.17306065381134	1.32288682886169
0.0305069935760311	1.59531289847068
-0.477608357773544	-0.507118629161658
0.608157174958932	0.655126183835602
0.437692538083802	-0.414583214332401
2.11849490851195	-0.921179817936008
1.08385834122272	0.734703136020522
0.167923175982045	0.999146536531136
0.581263020477976	0.00559002783658174
1.94713715912929	0.570790402285186
-1.7512625871421	2.19228175484043
0.550618688777553	-0.385710401650354
-0.104862760075574	0.928207280496984
-0.907149771034738	0.307774539489063
-0.648721083056511	-0.717648744615424
-0.101791439398354	-0.653097326793738
-0.155255640052945	-0.523200246807178
-0.538709070046421	-0.577018903982396
0.272494431916018	-0.869872184984311
0.144002742075345	-1.45635049570366
-0.828561520972643	0.162310473541491
-0.908887355803946	0.135973775187502
-1.67563744849529	2.13864121567473
-0.345173556627906	0.382424437221488
0.571224788950061	0.415909303276534
-0.893567793107918	-1.49497703252627
1.98716179110525	-0.472263450168773
1.31732159322158	0.950022043353943
-1.35485259079567	-1.46689769218514
-0.800054216025361	-0.378090743822928
-1.52338558747876	0.113411596443618
-0.926440218399518	1.14316196434731
-1.36080000873314	1.78141579029093
0.418713334161615	0.55172064025077
-0.686253212115036	-1.65379604051828
-1.47455998561395	0.349282146556718
-1.208401238085	-0.782944187832735
> first_number = 5


>  second_number = 7


>  strpar = 'main title'


> {
+     myfun <- function(x, y) {
+         x + y
+     }
+     
+     plot(RCx, main = strpar, xlab = 'my xlab', ylab = 'my ylab')
+     
+     
+  .... [TRUNCATED] 
[1] 12

Parameters (Session):
par1 = 5 ; par2 = 7 ; par3 = 'maintitle' ;
Parameters (R input):
R code (body of R function):
{
myfun <- function(x, y) {
x + y
}

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


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


pairs(x, main = "pairs plot")

print(myfun(par1, par2))
}