R/catmaid_metadata.R
catmaid_get_annotationlist.Rd
Get list of annotations (including user information) from CATMAID
catmaid_get_annotationlist(pid = 1, conn = NULL, raw = FALSE, ...)
project id (default 1)
the catmaid_connection
object
Whether to return completely unprocessed data (when TRUE
)
or to convert the nodes and connectors lists into processed data.frames
(when FALSE
, the default)
Additional arguments passed to the catmaid_fetch
function.
A list containing two data.frames, annotations and users. The users data.frame describes the users associated with each annotations, with one row for each valid annotations/user pair.
if (FALSE) {
al=catmaid_get_annotationlist(pid=1)
# table of the number of users who have contributed to each annotation
table(al$annotations$num_users_annotation)
}