Description Usage Arguments Value Note Author(s) Examples
Interpolation takes a three columns data frame to do a linear interpolation over X with points seperated by intervX then over Y with points seperated by intervY.
1 | Interpolation(Tab, intervX = NULL, intervY = NULL, mini=T)
|
Tab |
Dataframe to be interpolated. This data frame must be a three columns data frame. Columns must be x, y and z, in that order. |
intervX |
Interval between two interpolated points over X axis. |
intervY |
Interval between two interpolated points over Y axis. |
mini |
Logical, if TRUE, the return result is subset(Tab,Tab$z>=min(subset(Tab$z,Tab$z>0))) |
Returns a three data frame of the form x, y and z with the same column names as input data frame.
For further details on the use of interp, please refer to help(interp).
Vincent Le Bourlot
1 2 3 4 5 6 7 8 9 10 11 12 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.