citations {move} | R Documentation |
The citations method returns or sets the citation of a track from a Move or MoveStack object.
## S4 method for signature '.MoveGeneral'
citations(obj)
## S4 replacement method for signature '.MoveGeneral'
citations(obj) <- value
obj |
a |
value |
citation with class character |
character string of the citation
Marco Smolla & Anne Scharf
data(leroy)
citations(leroy) #get the citation from a Move object
citations(leroy) <- "No paper available" #change the citation and set it for a Move object
data(fishers)
citations(fishers) #get the citation from a MoveStack object
citations(fishers) <- "Nothing to cite" #change the citation and set it for a MoveStack object