Learn R Programming

crunch (version 1.24.0)

members<-,CrunchTeam,MemberCatalog-method: Teams

Description

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.

Usage

# S4 method for CrunchTeam,MemberCatalog
members(x) <- value

# S4 method for CrunchTeam,character members(x) <- value

# S4 method for ProjectFolder members(x)

# S4 method for ProjectFolder,MemberCatalog members(x) <- value

# S4 method for ProjectFolder,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)

Arguments

x

a CrunchTeam

value

for members<-, a character vector of emails or URLs of users to add to the team.

Value

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.

Details

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.

See Also

getTeams