diff options
author | Adam Bard <github@adambard.com> | 2013-08-11 12:05:37 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-08-11 12:05:37 -0700 |
commit | f408a2ae1de052e0433a9dbd73176ee1d91aa810 (patch) | |
tree | 7e43deec91bbdb3d278b93a1be5f75fe41e7ac3b | |
parent | cab2fedf0a889a561f484bf2102a9503986d4730 (diff) | |
parent | 2f1db5d8ae8a8c437e9c225211dadaf7b1f0c58d (diff) |
Merge pull request #188 from aquaroris/r-sample-output-typo
fixed wrong sample output in r.htl.markdown
-rw-r--r-- | r.html.markdown | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/r.html.markdown b/r.html.markdown index dd94072b..e4adb5dc 100644 --- a/r.html.markdown +++ b/r.html.markdown @@ -428,15 +428,17 @@ array(c(c(c(2,300,4),c(8,9,0)),c(c(5,60,0),c(66,7,847))), dim=c(3,2,2)) # => # , , 1 # -# [,1] [,2] -# [1,] 1 4 -# [2,] 2 5 +# [,1] [,2] +# [1,] 2 8 +# [2,] 300 9 +# [3,] 4 0 # # , , 2 # # [,1] [,2] -# [1,] 8 1 -# [2,] 9 2 +# [1,] 5 66 +# [2,] 60 7 +# [3,] 0 847 # LISTS (MULTI-DIMENSIONAL, POSSIBLY RAGGED, OF DIFFERENT TYPES) |