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 set of datasets with a user all at once by adding the user to a team that contains 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. You can extract an individual team by name,
or create a team by assigning into the function. To create a team by assignment, assign a list
to teams("myteam") <- value_list, the value_list can either empty (to just create a team
with that name), or can contain a "members" element with the emails or URLs of
users to add to the team. Users can be also be added later with the members<-
method.