summary.Full_PAFit_result {PAFit} | R Documentation |
Summary information on the estimation result
Description
This function outputs a summary on the estimation result.
Usage
## S3 method for class 'Full_PAFit_result'
summary(object,...)
Arguments
object |
An object of class |
... |
Other arguments to pass. |
Value
Outputs summary information on the estimation result.
Author(s)
Thong Pham thongphamthe@gmail.com
Examples
## Since the runtime is long, we do not let this example run on CRAN
## Not run:
library("PAFit")
set.seed(1)
# a network from Bianconi-Barabasi model
net <- generate_BB(N = 1000 , m = 50 ,
num_seed = 100 , multiple_node = 100,
s = 10)
net_stats <- get_statistics(net)
result <- joint_estimate(net, net_stats)
summary(result)
## End(Not run)
[Package PAFit version 1.2.10 Index]