flowRepOrganization-class: 'flowRepOrganization': a class for storing details about an...

Description Details Creating Objects Slots Methods Author(s) See Also Examples

Description

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

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).

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)

Author(s)

Josef Spidlen

See Also

flowRep.get

Examples

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

FlowRepositoryR documentation built on Nov. 8, 2020, 7:26 p.m.