Fetch user contribution history

catmaid_user_history(from, to = Sys.Date(), pid = 1L, conn = NULL, ...)

Arguments

from

Starting date for history

to

End date for history (defaults to today's date)

pid

Project id (default 1)

conn

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

Value

A data.frame with columns

  • full_name

  • login

  • id

  • new_cable (in nm)

  • new_connectors

  • new_reviewed_nodes

  • date

Examples

if (FALSE) {
catmaid_user_history(from="2016-01-01")
# last 2 days
catmaid_user_history(from = Sys.Date()-2)
}