around | R Documentation |
View index rows of a data.frame with n surrounding rows
around(x, i, n1 = 2, n2 = n1, convert = is.logical(i))
x |
Data.frame |
i |
Index (logical or integers) |
n1 |
Number of elements shown before each i. DEFAULT: 2 |
n2 |
Number of elements shown after each i. DEFAULT: n1 |
convert |
Use |
Nothing, calls View
Berry Boessenkool, berry-b@gmx.de, Nov 2016
sortDF
, View
## Not run: ## View should not be used in examples
myDF <- data.frame(A=1:30, B=cumsum(rnorm(30)))
myDF[c(5,7,23,29),1] <- NA
around(myDF, i=is.na(myDF$A))
around(myDF, i=c(11,19), n2=0)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.