f_factor {MandalaR} | R Documentation |
Function to reduce points
f_factor(x, y, k)
x |
is a vector length n with coordinate x of point |
y |
is a vector length n with coordinate y of point |
k |
is a vector with factor of decrease or increase points |
Returns a dataframe with the original points plus the respective changed points.
x=c(1,1)
y=c(0,1)
k=c(0.5)
f_factor(x,y,k)