Fetch user contribution history
catmaid_user_history(from, to = Sys.Date(), pid = 1L, conn = NULL, ...)
Starting date for history
End date for history (defaults to today's date)
Project id (default 1)
A catmaid_connection
objection returned by
catmaid_login
. If NULL
(the default) a new connection
object will be generated using the values of the catmaid.* package
options as described in the help for catmaid_login
.
Additional arguments passed to the catmaid_fetch
function
A data.frame with columns
full_name
login
id
new_cable (in nm)
new_connectors
new_reviewed_nodes
date
if (FALSE) {
catmaid_user_history(from="2016-01-01")
# last 2 days
catmaid_user_history(from = Sys.Date()-2)
}