Learn R Programming

FlowRepositoryR (version 1.4.0)

flowRepOrganization-class: 'flowRepOrganization': a class for storing details about an organization associated with a FlowRepository dataset

Description

This class represents the name and address of an organization associated with a dataset stored in FlowRepository.

Arguments

Creating Objects

Objects can be created using new("flowRepOrganization", name = ...., Object of class character street = ...., Object of class character or NULL city = ...., Object of class character or NULL zip = ...., Object of class character or NULL state = ...., Object of class character or NULL country = ...., Object of class character or NULL ) or the constructor flowRepOrganization, with mandatory argument name and optional arguments street, city, zip, state and country. flowRepOrganization(name, street=NULL, city=NULL, zip=NULL, state=NULL, country=NULL)

Slots

name:
Object of class character containing the name of the organization.
street:
Object of class character or NULL containing the street of the address of the organization.
city:
Object of class character or NULL containing the city of the address of the organization.
zip:
Object of class character or NULL containing the zip (or postal code) of the address of the organization.
state:
Object of class character or NULL containing the state (or province) of the address of the organization.
country:
Object of class character or NULL containing the country of the address of the organization.

Methods

There are separate documentation pages for some of the methods listed here which may be consulted for more details.
summary
Print the name and address of the organization. See summary for details. Usage: summary(flowRepOrganization)

Details

Objects of class flowRepOrganization can be used to hold information about an organization that is associated with a FlowRepository dataset. A list of these objects will typically be placed in the organizations slot of a flowRepData object when this is obtained using the flowRep.get function (assuming there are any organizations associated with that dataset).

See Also

flowRep.get

Examples

Run this code
    myDataset <- flowRep.get("FR-FCM-ZZ47")
    summary(organizations(myDataset)[[1]])

Run the code above in your browser using DataLab