Class providing the HospiNet object with its methods
Class providing the HospiNet object with its methods
Class providing the HospiNet object with its methods
Class providing the HospiNet object with its methods
class
Format
R6::R6Class object.
Returns
Object of R6::R6Class with methods for accessing facility networks.
Methods
new(edgelist, window_threshold, nmoves_threshold, noloops): This method is used to create an object of this class with edgelist as the necessary information to create the network. The other arguments window_threshold, nmoves_threshold, and noloops are specific to the edgelist and need to be provided. For ease of use, it is preferable to use the function hospinet_from_subject_database().
print(): This method prints basic information about the object.
plot(type = "matrix"): This method plots the network matrix by default. The argument type can take the following values:
- **matrix**: plot the network matrix,
- **clustered_matrix**: identify and plot cluster(s) in the matrix using the infomap algorithm (from igraph),
- **degree**: plot the histogram of the number of neighbors by facility,
- **circular_network**: plot the network by clusters using a "spaghetti-like" layout. Only works when there are at least 2 clusters.
window_threshold: The window threshold used to compute the network
nmoves_threshold: The nmoves threshold used to compute the network
noloops: TRUE if loops have been removed
prob_params: Currently unused
fsummary: A pre-built data.table with the LOSPerHosp, subjectsPerHosp and admissionsPerHosp that don't need to be recomputed.
create_MetricsTable: all of the metrics for each facility
Returns
A new HospiNet object
Method print()
Prints a basic description of the number of facilities and movements of a HospiNet object.
Usage
HospiNet$print()
Returns
NULL
Method plot()
Plots various representations of the HospiNet network
Usage
HospiNet$plot(type = "matrix", ...)
Arguments
type: One of "matrix", "degree", "clustered_matrix", "circular network" Choose what you would like to plot - the connectivity matrix, degree distribution, the clusters, or the network in a circle.
...: Additional arguments to be provided. Only supported for type == 'circular_network'.
Returns
a ggplot2 object
Method clone()
The objects of this class are cloneable with this method.