R Statement
(Redirected from R statement)
Jump to navigation
Jump to search
An R Statement is a program statement expressed in the R programming language.
- Context:
- It can express an R Operation (within an R program).
- It can be a member of an R Source Code Item.
- Example(s):
- Counter-Example(s):
- a Perl Statement.
- a SQL Statement.
- a Python Statement.
- a Pig Statement.
- See: Imperative Programming.
References
2009
- http://stackoverflow.com/questions/652136/how-can-i-remove-an-element-from-a-list
- … Removing Null elements from a list in single line:
x=x[-(which(sapply(x,is.null),arr.ind=TRUE))]
- … Removing Null elements from a list in single line: