R/elaborator_daw_lines.R

Defines functions elaborator_draw_lines

elaborator_draw_lines <- function(x){
    apply(x, 1, function(z) {
      lines(
        x = 1:length(colnames(x)),
        y = z,
        col = "#00000040"
      )
      }
    )
}

Try the elaborator package in your browser

Any scripts or data that you put into this service are public.

elaborator documentation built on April 4, 2025, 5:31 a.m.