summary.TriLines {pcds} | R Documentation |
Return a summary of a TriLines
object
Description
Returns the below information about the object
:
call
of the function defining the object
,
the defining points
,
selected x
and y
points on the line,
equation of the line, together with the vertices of the triangle,
and coefficients
of the line.
Usage
## S3 method for class 'TriLines'
summary(object, ...)
Arguments
object |
An |
... |
Additional parameters for |
Value
The call
of the object
of class "TriLines"
,
the defining points
,
selected x
and y
points on the line,
equation of the line,
together with the vertices of the triangle,
and coefficients
of the line
(in the form: y = slope * x + intercept
).
See Also
print.TriLines
,
print.summary.TriLines
,
and plot.TriLines
Examples
A<-c(0,0); B<-c(1,0); C<-c(1/2,sqrt(3)/2);
Te<-rbind(A,B,C)
xfence<-abs(A[1]-B[1])*.25
#how far to go at the lower and upper ends in the x-coordinate
x<-seq(min(A[1],B[1])-xfence,max(A[1],B[1])+xfence,l=3)
lnACM<-lineA2CMinTe(x)
lnACM
summary(lnACM)
[Package pcds version 0.1.8 Index]