Get list of annotations (including user information) from CATMAID
catmaid_get_annotationlist(pid = 1, conn = NULL, raw = FALSE, ...)
pid | project id (default 1) |
---|---|
conn | the |
raw | Whether to return completely unprocessed data (when |
... | Additional arguments passed to the |
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.
# NOT RUN { al=catmaid_get_annotationlist(pid=1) # table of the number of users who have contributed to each annotation table(al$annotations$num_users_annotation) # }