Learn R Programming

PAFit (version 1.2.10)

print.Full_PAFit_result: printing information on the estimation result

Description

This function outputs simple information of the estimation result.

Usage

# S3 method for Full_PAFit_result
print(x,...)

Value

Outputs summary information on the estimation result.

Arguments

x

An object of class Full_PAFit_result, containing the estimated results from only_A_estimate, only_F_estimate or joint_estimate.

...

Other arguments to pass.

Author

Thong Pham thongphamthe@gmail.com

Examples

Run this code
  ## Since the runtime is long, we do not let this example run on CRAN
  if (FALSE) {
    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)
    print(result)
  }

Run the code above in your browser using DataLab