iFun {qAnalyst} | R Documentation |
iFun
is an internal function to create a sequence from 1 to n, where n=length(x).
iFun(x)
x |
a numeric vector |
iFun is a simple internal function, used by plot method.
a sequence vector.
Internal function
Giorgio Spedicato and Andrea Spano'
Internal function
#very simple example x=c(4,5,8,2,3) output=iFun(x) output # 1 2 3 4 5