Teams contain users and datasets. You can share a dataset with a group of users by sharing the dataset with a team. You can also share a bunch of datasets with a user all at once by adding them to a team that has those datasets.
# S4 method for CrunchTeam,MemberCatalog
members(x) <- value# S4 method for CrunchTeam,character
members(x) <- value
# S4 method for CrunchProject
members(x)
# S4 method for CrunchProject,MemberCatalog
members(x) <- value
# S4 method for CrunchProject,character
members(x) <- value
# S4 method for CrunchTeam
members(x)
a CrunchTeam
for members<-
, a character vector of emails or URLs of
users to add to the team.
members
returns a
MemberCatalog
, which has references to the users that are members
of the team. members<-
returns x
with the given users added
to the members catalog.
These methods allow you to work with teams. Find your teams with the
getTeams
function, which returns your TeamCatalog
.
Extract an individual team by name. Create a team by assigning in with a new
name, with the assignment value a list, either empty (to just create a team
with that name), or with a "members" element, containing emails or URLs of
users to add to the team. Users can be added later with the members<-
method.