powered by
View index rows of a data.frame with n surrounding rows
around(x, i, n1 = 2, n2 = n1, convert = is.logical(i))
Nothing, calls View
View
Data.frame
Index (logical or integers)
Number of elements shown before each i. DEFAULT: 2
Number of elements shown after each i. DEFAULT: n1
Use which to get the row numbers? DEFAULT: TRUE if i is boolean
which
Berry Boessenkool, berry-b@gmx.de, Nov 2016
sortDF, View
sortDF
if (FALSE) ## 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)
Run the code above in your browser using DataLab