R/addscores2graph.R

Defines functions addscores2graph

addscores2graph <- function(x,y){
  
  for(i in 1:length(x)){
    segments(0,y[i],x[i],y[i],lty=1,lwd=2,col="grey70")
    segments(x[i],y[i],x[i],0,lty=1,lwd=2,col="grey70")
  }
}
Halophila/scorecards documentation built on May 27, 2019, 3:29 p.m.