Nothing
local({
a <- 1 + 1
if (T) {
return("b")
}
a + 1
})
mr <- local({
a <- 1 + 1
if (T) {
return("b")
}
a + 1
})
mr
mr <- local({
a <- 1 + 1
if (T) {
return("b")
}
a + 1
})
mr2 <- mr + 1
mr2
unlist(lapply(1:5, function(x) {
if (x == 2) {
return(x)
}
}))
local({
a <- 1
a + 2
})
a <- 1 + 1
b <- a + 1
mr <- b + 1
a <- 1 + 1
b <- a + 1
mr <- b + 1
a <- 1 + 1
b <- a + 1
mr2 <- b + 1
mrx <- mr + mr2
mrx
mr <- local({
a <- 1 + 1
b <- a + 1
b + 1
})
mr
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.