of Irreproducible Research!
Description of Statistical Computation | |
|---|---|
| Author's title | |
| Author | *The author of this computation has been verified* |
| R Software Module | Rscript (source code is shown below) |
| Title produced by software | R console |
| Date of computation | Thu, 28 Aug 2008 07:34:34 -0600 |
| Cite this page as follows | Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2008/Aug/28/t1219930475ke8igb0xbd4nr0p.htm/, Retrieved Wed, 29 Apr 2026 11:15:04 +0000 |
| Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=14268, Retrieved Wed, 29 Apr 2026 11:15:04 +0000 | |
| QR Codes: | |
|
| |
| Original text written by user: | no comments |
| IsPrivate? | No (this computation is public) |
| User-defined keywords | key1,key2 |
| Estimated Impact | 667 |
Tree of Dependent Computations | |
| Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data) | |
| - [R console] [my R test] [2008-08-28 13:34:34] [d41d8cd98f00b204e9800998ecf8427e] [Current] | |
| Feedback Forum | |
Post a new message | |
Dataset | |
| Dataseries X: | |
-0.490357244406668 -1.31120876861377 -0.297394457735678 -0.103634335610064 -0.56933709145232 -0.661312881432302 0.508588063583074 -2.24648561013701 0.757359232049237 -1.39541142011389 | |
| Dataseries Y: | |
0.925065614050254 0.56431273673661 0.687856073258445 0.173583512194455 0.16305617778562 0.711931665893644 0.123347742948681 0.57563852169551 0.147916303016245 0.99474138719961 | |
| Dataseries Z: | |
-1.42840999936701 0.129775709438899 0.731062969675424 0.880153629108963 0.622245808749542 2.26975559417852 0.341807690643391 -1.19840465293891 -0.362687248868076 0.209331041961511 | |
Tables (Output of Computation) | |
> first_number = 5
> second_number = 7
> strpar = 'hello'
> {
+ myfun <- function(x, y) {
+ x + y
+ }
+
+ print(myfun(first_number, second_number))
+ print(strpar)
+ print .... [TRUNCATED]
[1] 12
[1] 'hello'
[1] -0.5717111
[1] 0.2258484
| |
Figures (Output of Computation) | |
Input Parameters & R Code | |
| Parameters (Session): | |
| par1 = 5 ; par2 = 7 ; par3 = hello ; | |
| Parameters (R input): | |
| R code (body of R function): | |
{ | |