limitsFun {qAnalyst} | R Documentation |
limitsFun
receives the vector or list of points to be plotted and returns a two elements vector containing the lower and upper limits y-axis limits.
limitsFun(list)
list |
a vector or list of points. |
limitsFun
unlists the input, if it is a list. The limits range given in output is 1.05 times the range between the points given in input.
limitsFun
returns a two elements vector containing the lower and the upper limits.
limitsFun
is used by plot.spc
Andrea Spano'
limitsFun
is an internal function
##simple example x=c(2,5,8,4,7) limits=limitsFun(x) limits # 1.7 8.3