plateLabelSlots {GCDkit} | R Documentation |
Annotates individual slots in a plate by letters or Roman numerals. For instance (a), (b), (c)... or (i), (ii), (iii), (iv), (v)...
plateLabelSlots(text=letters,style="()",cex=1.5,pos="topright")
text |
desired type of labels; see Details. |
style |
optional character strings before and after label, typically brackets. |
cex |
relative size of the text compared to the current codepar("cex"). |
pos |
character; position of the label relative to the plot. |
The argument 'what
' may acquire one of following values:
'letters' 'LETTERS' 'numbers' 'roman' 'ROMAN'
or can be user-defined character string of longer or of the same length as is the number of slots to be annotated (see the last example).
Possible positions (parameter pos
) are:
'bottomright' 'bottom' 'bottomleft' 'left' 'topleft' 'top' 'topright' 'right' 'center'
.
none
This function uses the plates concept. The individual plots can be selected and their
properties/appearance changed as if they were stand alone Figaro-compatible plots.
See Plate
, Plate editing
and
figaro
for details.
Vojtech Janousek, vojtech.janousek@geology.cz
multipleMjr("SiO2") plateLabelSlots("letters","",pos="bottomleft") plateLabelSlots("ROMAN","{}") my_labs<-c("1st","2nd","3rd","4th","5th","6th","7th","8th","9th") plateLabelSlots(my_labs)