| vertical_s {matRiks} | R Documentation | 
Coordinates of S-shaped figures
Description
Define the coordinates for drawing S-shaped figures
Usage
vertical_s(lty = 1, lwd = 3)
vertical_s_inv(lty = 1, lwd = 3)
horizontal_s(lty = 1, lwd = 3)
horizontal_s_inv(lty = 1, lwd = 3)
s_vertical_s(lty = 1, lwd = 3)
s_vertical_s_inv(lty = 1, lwd = 3)
s_horizontal_s(lty = 1, lwd = 3)
s_horizontal_s_inv(lty = 1, lwd = 3)
Arguments
lty | 
 integer, define the line type of the figure, default is 1 (solid line).  | 
lwd | 
 integer, define the line width of the figure. Default is 3.  | 
Details
Define the coordinates of a vertical S-shaped figure
Value
Return the coordinates for drawing a vertical S-shaped figure
Return the coordinates for drawing an inverted vertical S-shaped figure
Return the coordinates for drawing an horizontal S-shaped figure
Return the coordinates for drawing an horizontal S-shaped figure
Return the coordinates for drawing a vertical S-shaped figure
Return the coordinates for drawing a single vertical S-shaped figure
Return the coordinates for drawing a single horizontal S-shaped figure
Return the coordinates for drawing a single inverted horizontal S-shaped figure
Functions
-  
vertical_s_inv(): Coordinates of an inverted vertical S-shaped figureDefine the coordinates of an inverted vertical S-shaped figure
 -  
horizontal_s(): Coordinates of an horizontal S-shaped figureDefine the coordinates of an horizontal S-shaped figure
 -  
horizontal_s_inv(): Coordinates of an inverted horizontal S-shaped figureDefine the coordinates of an inverted horizontal S-shaped figure
 -  
s_vertical_s(): Coordinates of a single vertical S-shaped figureDefine the coordinates for drawing a single vertical S-shaped figure composed of two arches, which is forced to be a single figure (to be used in shape())
 -  
s_vertical_s_inv(): Coordinates of a single inverted vertical S-shaped figureDefine the coordinates for drawing a single inverted vertical S-shaped figure composed of two arches, which is forced to be a single figure (to be used in shape())
 -  
s_horizontal_s(): Coordinates of a single horizontal S-shaped figureDefine the coordinates for drawing a single horizontal S-shaped figure composed of two arches, which is forced to be a single figure (to be used in shape())
 -  
s_horizontal_s_inv(): Coordinates of a single inverted horizontal S-shaped figureDefine the coordinates for drawing a single inverted horizontal S-shaped figure composed of two arches, which is forced to be a single figure (to be used in shape())
 
Examples
# default coordinates of the vertical S-shaped figure
vertical_s()
# change the line type
vertical_s(lty = 2)
# default coordinates of the inverted vertical S-shaped figure
vertical_s_inv()
# change the line type
vertical_s_inv(lty = 2)
# default coordinates of the horizontal S
horizontal_s()
# change the line type
horizontal_s(lty = 2)
# default coordinates of the horizontal S-shaped figure
horizontal_s_inv()
# change the line type
horizontal_s_inv(lty = 2)
# default coordinates of the vertical S-shaped figure
s_vertical_s()
# change the line type
s_vertical_s(lty = 2)
# default coordinates of the single inverted vertical S-shaped figure
s_vertical_s_inv()
# change the line type
s_vertical_s_inv(lty = 2)
# default coordinates of the single horizontal S-shaped figure
s_horizontal_s()
# change the line type
s_horizontal_s(lty = 2)
# default coordinates of the single inverted horizontal S-shaped figure
s_horizontal_s_inv()
# change the line type
s_horizontal_s_inv(lty = 2)