R/get.tablepos.R

Defines functions get.tablepos

Documented in get.tablepos

get.tablepos<-function(x) {
 plotlim<-par("usr")
 tablepos<-list()
 if(x == "bottomleft") {
  tablepos$x<-plotlim[1]
  tablepos$y<-plotlim[3]
  tablepos$xjust<-0
  tablepos$yjust<-1
 }
 if(x == "bottom") {
  tablepos$x<-(plotlim[2]+plotlim[1])/2
  tablepos$y<-plotlim[3]
  tablepos$xjust<-0.5
  tablepos$yjust<-1
 }
 if(x == "bottomright") {
  tablepos$x<-plotlim[2]
  tablepos$y<-plotlim[3]
  tablepos$xjust<-1
  tablepos$yjust<-1
 }
 if(x == "left") {
  tablepos$x<-plotlim[1]
  tablepos$y<-(plotlim[3]+plotlim[4])/2
  tablepos$xjust<-0
  tablepos$yjust<-0.5
 }
 if(x == "right") {
  tablepos$x<-plotlim[2]
  tablepos$y<-(plotlim[3]+plotlim[4])/2
  tablepos$xjust<-1
  tablepos$yjust<-0.5
 }
 if(x == "topleft") {
  tablepos$x<-plotlim[1]
  tablepos$y<-plotlim[4]
  tablepos$xjust<-0
  tablepos$yjust<-0
 }
 if(x == "top") {
  tablepos$x<-(plotlim[2]+plotlim[1])/2
  tablepos$y<-plotlim[4]
  tablepos$xjust<-0.5
  tablepos$yjust<-0
 }
 if(x == "topright") {
  tablepos$x<-plotlim[2]
  tablepos$y<-plotlim[4]
  tablepos$xjust<-1
  tablepos$yjust<-0
 }
 # if no recognizable position was passed, put it in the center
 if(x == "center" || length(tablepos)==0) {
  tablepos$x<-(plotlim[1]+plotlim[2])/2
  tablepos$y<-(plotlim[3]+plotlim[4])/2
  tablepos$xjust<-0.5
  tablepos$yjust<-0.5
 }
 return(tablepos)
}

Try the plotrix package in your browser

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

plotrix documentation built on Nov. 10, 2023, 5:07 p.m.