network_g2g {vivainsights} | R Documentation |
Create a network plot with the group-to-group query
Description
Pass a data frame containing a group-to-group query and return a network
plot. Automatically handles "Within Group"
and "Other_collaborators"
values within query data.
Usage
network_g2g(
data,
primary = NULL,
secondary = NULL,
metric = "Group_collaboration_time_invested",
algorithm = "fr",
node_colour = "lightblue",
exc_threshold = 0.1,
org_count = NULL,
subtitle = "Collaboration Across Organizations",
return = "plot"
)
Arguments
data |
Data frame containing a group-to-group query. |
primary |
String containing the variable name for the Primary Collaborator column. |
secondary |
String containing the variable name for the Secondary Collaborator column. |
metric |
String containing the variable name for metric. Defaults to
|
algorithm |
String to specify the node placement algorithm to be used.
Defaults to |
node_colour |
String or named vector to specify the colour to be used
for displaying nodes. Defaults to
|
exc_threshold |
Numeric value between 0 and 1 specifying the exclusion
threshold to apply. Defaults to 0.1, which means that the plot will only
display collaboration above 10% of a node's total collaboration. This
argument has no impact on |
org_count |
Optional data frame to provide the size of each organization
in the
|
subtitle |
String to override default plot subtitle. |
return |
String specifying what to return. This must be one of the following strings:
See |
Value
A different output is returned depending on the value passed to the return
argument:
-
"plot"
: 'ggplot' object. A group-to-group network plot. -
"table"
: data frame. An interactive matrix of the network. -
"network
: 'igraph' object used for creating the network plot. -
"data"
: data frame. A long table of the underlying data.
See Also
Other Network:
g2g_data
,
network_p2p()
,
network_summary()
,
p2p_data
,
p2p_data_sim()
Examples
# Return a network plot
g2g_data %>% network_g2g()
# Return a network plot - Meeting hours and 5% threshold
network_g2g(
data = g2g_data,
primary = "PrimaryCollaborator_Organization",
secondary = "SecondaryCollaborator_Organization",
exc_threshold = 0.05
)
# Return a network plot - custom-specific colours
# Get labels of orgs and assign random colours
org_str <- unique(g2g_data$PrimaryCollaborator_Organization)
col_str <-
sample(
x = heat_colours(n = length(org_str)), # generate colour codes for each one
size = length(org_str),
replace = TRUE
)
# Create and supply a named vector to `node_colour`
names(col_str) <- org_str
g2g_data %>%
network_g2g(node_colour = col_str)
# Return a network plot with circle layout
# Vary node colours and add org sizes
org_tb <-
data.frame(
Organization = c(
"G&A East",
"G&A West",
"G&A North",
"South Sales",
"North Sales",
"G&A South"
),
n = sample(30:1000, size = 6)
)
g2g_data %>%
network_g2g(algorithm = "circle",
node_colour = "vary",
org_count = org_tb)
# Return an interaction matrix
# Minimum arguments specified
g2g_data %>%
network_g2g(return = "table")