new tasks

This commit is contained in:
Ingy döt Net 2013-04-09 00:46:50 -07:00
parent 2a4d27cea0
commit 80737d5a6a
1194 changed files with 15353 additions and 1 deletions

View file

@ -0,0 +1,2 @@
integer(5)
c(1L, -2L, 99L);

View file

@ -0,0 +1,2 @@
logical(5)
c(TRUE, FALSE)

View file

@ -0,0 +1,2 @@
character(5)
c("abc", "defg", "")

View file

@ -0,0 +1,3 @@
matrix(1:12, nrow=3)
array(1:24, dim=c(2,3,4)) #output not shown

View file

@ -0,0 +1 @@
list(a=123, b="abc", TRUE, 1:5, c=list(d=runif(5), e=5+6))

View file

@ -0,0 +1,13 @@
$a
[1] 123
$b
[1] "abc"
[[3]]
[1] TRUE
[[4]]
[1] 1 2 3 4 5
$c
$c$d
[1] 0.6013157 0.5011909 0.7106448 0.3882265 0.1274939
$c$e
[1] 11

View file

@ -0,0 +1 @@
data.frame(name=c("Alice", "Bob", "Carol"), age=c(23, 35, 17))

View file

@ -0,0 +1,3 @@
numeric(5)
1:10
c(1, 3, 6, 10, 7 + 8, sqrt(441))