stRoke/R/source_lines.R
2022-10-28 12:23:22 +02:00

15 lines
646 B
R

#' Source only specific lines from an R file
#'
#' Copied from a gist by christophergandrud (https://gist.github.com/christophergandrud/1eb4e095974204b12af9)
#' This function is really helpfull when working on eg sst.dk-servers. You can not load packages, so you have to re-write this function. It is short, and you will manage!
#' @param file character string with path to the source file
#' @param lines numeric vector of the lines to source from 'file'
#' @param ... further arguments to be passed to source
#'
#' @return list
#' @export
#'
source_lines <- function(file, lines, ...){
source(textConnection(readLines(file)[lines]), ...)
}