R/plotcont.R

Defines functions plotcont

Documented in plotcont

plotcont = function(dat, score="S", main, xaxis.marks=seq(0,5,0.025)){
  x = unlist(dat[grep(score, colnames(dat))])
  plot(density(x[!is.na(x)]),  axes=FALSE, main=main)
  axis(1, at=xaxis.marks)
  axis(2)
  box()
}

Try the highSCREEN package in your browser

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

highSCREEN documentation built on Feb. 12, 2021, 5:09 p.m.