Description Usage Arguments Value Author(s) References See Also Examples
An organizational chart that supports selection.
The gvisOrgChart function reads a data.frame and creates text output referring to the Google Visualisation API, which can be included into a web page, or as a stand-alone page. The actual chart is rendered by the web browser.
1 2 | gvisOrgChart(data, idvar = "", parentvar = "", tipvar = "",
options = list(), chartid)
|
data |
a |
idvar |
column name of |
parentvar |
column name of |
tipvar |
column name of |
options |
list of configuration options for Google Org Chart.
Further possible components are, taken from https://google-developers.appspot.com/chart/interactive/docs/gallery/orgchart.html#Configuration_Options:
|
chartid |
character. If missing (default) a random chart id will be generated based on
chart type and |
gvisOrgChart
returns list of class
"gvis
"
and "list
".
An object of class "gvis
" is a list containing at least the
following components:
|
Google visualisation type, here 'OrgChart' |
|
character id of the chart object. Unique chart ids are required to place several charts on the same page. |
|
a list with the building blocks for a page
|
Markus Gesmann markus.gesmann@gmail.com,
Diego de Castillo decastillo@gmail.com
Google Org Chart API: https://google-developers.appspot.com/chart/interactive/docs/gallery/orgchart.html
Follow the link for Google's data policy.
See also print.gvis
, plot.gvis
for
printing and plotting methods.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Please note that by default the googleVis plot command
## will open a browser window and requires Internet
## connection to display the visualisation.
Regions
Org1 <- gvisOrgChart(Regions, idvar = "Region", parentvar = "Parent",
tipvar="Val")
plot(Org1)
## Set a few options
Org2 <- gvisOrgChart(Regions, idvar = "Region", parentvar = "Parent",
tipvar="Val",
options=list(width=600, height=400,
size='large', allowCollapse=TRUE))
plot(Org2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.