Description Details Creating Objects Slots Methods Author(s) See Also Examples
This class represents the name and address of an organization associated with a dataset stored in FlowRepository.
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).
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)
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.
There are separate documentation pages for some of the methods listed here which may be consulted for more details.
Print the name and address of the organization.
See summary
for details.
Usage:
summary(flowRepOrganization)
Josef Spidlen
1 2 | myDataset <- flowRep.get("FR-FCM-ZZ47")
summary(organizations(myDataset)[[1]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.