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 computationThu, 02 Jul 2009 07:35:36 -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/Jul/02/t1246541737zbxw55agxqkdn7u.htm/, Retrieved Fri, 20 Sep 2024 23:57:16 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=42301, Retrieved Fri, 20 Sep 2024 23:57:16 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact201
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [R console] [test] [2009-07-02 13:35:36] [b768c7adc2675864c15627b87ad9ef22] [Current]
Feedback Forum

Post a new message
Dataseries X:
0.756719527187541	-0.95678022481894
0.633377982679848	-0.477610571866824
1.86287430254338	-1.86424756083835
-0.633185824954203	0.133299750037499
0.513644995024234	0.892649214615124
0.585553202126057	-1.04149001205123
0.833568512328346	0.720318100875122
0.699724896899821	0.0487858439304107
0.457592343827626	-0.249473404363468
0.541220539574076	0.861692443307718
-1.25762869159078	-0.182418656922877
-1.24367696530244	1.08011781370406
-0.0475035782233912	1.08745060815004
0.383083113010161	0.561759189237325
-2.01722287252678	-1.19011058278673
-0.463386644949506	0.92528731620839
0.120249163568419	-0.309843706664803
1.45757287449667	1.04779704223479
-0.320745896312563	0.525795191425356
1.62520993858551	-0.53547707900185
-0.680388751917589	0.770446015393028
2.21985708812596	-0.621543476330318
1.33771528955553	0.446130563130334
0.900333455298473	0.0827656923921908
1.13633248708781	-0.518714891245928
-0.928864385369806	0.534379246944373
2.11066170514999	-2.30576079091812
-1.61485141683192	1.01856173380492
-0.76024840129347	0.553128021985092
-0.328301349259779	0.796924258717797
-0.562779861750861	0.0992640441793182
0.284528017547909	1.93401175713184
0.0256749452155042	1.10444625084396
-0.597340493777238	-1.94563018952331
-1.00905499529519	0.505938189858356
-1.60080126932841	-0.819408579598196
2.00539388029669	-0.411093473406794
-0.00732419145528974	0.173283442376156
1.21276518799676	-1.32873898094780
1.12615746987836	0.515639553281927
-0.452858233896604	0.481171317753805
-0.365101307723488	2.77612313739212
0.704288879516278	-0.444838869174292
1.12955504654062	-1.01874325870886
0.145966755310466	0.0475234263711672
-0.0528800915525803	-0.612440499358521
-0.159698363077682	0.163206332687839
1.56679290149439	-0.53665642516267
-2.10024494196841	-0.184197994014514
0.762047938778373	-0.0440552505898095
> 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')
+     hist(R .... [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))
}