points2par {convergEU} | R Documentation |
From points to parameters of a straight line
Description
Given two points on a plane, parameters of a straight line are calculated.
Usage
points2par(point1, point2)
Arguments
point1 |
collection abscissa ,ordinate. |
point2 |
collection abscissa ,ordinate. |
Value
collection made by (intercept, slope)
Examples
# Example 1
require(tibble)
myTB <- tribble(
~time , ~indic,
1 , 25,
10 , 5,
1, 10,
10, 3
)
resparamIT1 <- points2par(as.numeric(myTB[1,]),as.numeric(myTB[2,]))
# Example 2
myTB1 <- tribble(
~time , ~indic,
2 , 25,
16 , 5,
1, 9,
10, 3,
34, 4
)
resparamIT2 <- points2par(as.numeric(myTB1[1,]),as.numeric(myTB1[2,]))
# Example 3
myTB2 <- tribble(
~time , ~indic,
5 , 2,
1 , 15,
11, 19,
20, 33,
25, 14
)
resparamIT3 <- points2par(as.numeric(myTB2[1,]),as.numeric(myTB2[2,]))
[Package convergEU version 0.7.3.2 Index]