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 computationSun, 05 Jul 2009 15:32:08 -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/05/t1246829529i3jwk5rlan5m28o.htm/, Retrieved Sat, 18 May 2024 16:44:44 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=42338, Retrieved Sat, 18 May 2024 16:44:44 +0000
QR Codes:

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

Post a new message
Dataseries X:
-0.103267665206699	-0.0458303147551138
1.90124030795443	-0.287410295349034
2.30119891187525	-0.645818920922809
-0.255439491899485	0.616546644207536
1.20454877966941	0.971182568822896
0.137876082061021	-0.398010151059622
-1.01167175062442	-0.566564857631306
1.31571431725274	-0.39123357968738
-0.789271338697913	0.242813007683870
-1.61721583541368	-1.02679874696273
-0.109913650507863	-1.75673714384798
-0.217286544713531	0.429062391119294
1.07216989365866	1.18424569313723
-0.25110902038513	-1.07828000511934
1.62449884901939	2.15860109075846
-0.512118584364685	-1.08039032711444
0.39261902806149	-2.37070159850543
1.11234254074946	0.519463702958201
0.0253983333597985	-0.732871549028961
-0.840044627989393	-0.338882684582719
1.17101160689545	-0.171780144003385
1.25182357015078	-0.526015882079974
0.593707439549007	0.613114008040791
-0.473749478063416	-0.902352150990907
1.67287971672173	-1.11239282420619
-1.15294243995430	0.675438528778481
1.00370795882009	1.14884614922359
-0.254476742393201	-0.969172860879416
0.243737870331437	-0.334885096996037
0.687854637108344	0.8804756636854
-2.24114444740222	0.144482648802153
-1.07696279885160	0.187673575826931
-2.00347807966869	-0.0533653691340362
0.688523500926084	-1.62670678629135
-0.702768770835982	-1.94846879200516
-1.10632293188461	-0.364565533050399
0.994106682153746	-0.0808178540869561
1.23112158266277	-0.726734533385169
1.00443260117290	-2.86224508054303
-1.28088754845950	-0.359985025081792
-2.83917482974414	2.34728552874203
-0.421898443395624	-0.980038921170995
-1.19462914855981	0.390680485212192
0.496001235188267	-1.28795887842798
-0.743190507999482	0.234485118327541
0.572808946832855	0.542049063846542
-0.916506939715142	0.81557031867902
0.170081124725552	-1.27210406382616
0.973513861561386	1.46622863046495
-0.754659931652453	0.0714621160632847
> 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))
}