FF {FinNet} | R Documentation |
Create any firm-firm (FF) matrix
Description
General function to create a firm-firm (FF) matrix
Usage
FF(..., who, ties, id_as_firm_name = NULL, Matrix = NULL, self_ties = FALSE)
Arguments
... |
Either multiple objects of class |
who |
Whether to take into account: ( |
ties |
Type of ties to create. Possible values: |
id_as_firm_name |
Whether to use the ticker as the firm's name. Defaults to |
Matrix |
Whether to use the |
self_ties |
Whether to allow self-ties (a 'loop' in graph theory). Defaults to |
Details
See more specific functions for a detailed overview:
for board interlocks (who == 'management'
):
-
FF.binary.management
, ifties = 'binary'
; -
FF.binary.management
, ifties = 'naive'
; -
FF.norm.management
, ifties = 'share'
.
for co-ownership (who == 'ownership'
):
-
FF.binary.ownership
, ifties = 'binary'
; -
FF.naive.ownership
, ifties = 'naive'
; -
FF.norm.ownership
, ifties = 'share'
.
for both co-ownership and board interlocks (who == 'both'
):
-
FF.binary.both
, ifties = 'binary'
; -
FF.naive.both
, ifties = 'naive'
; -
FF.norm.both
, ifties = 'share'
.
Value
A matrix object of class financial_matrix
(possibly using the Matrix
package)
Author(s)
Telarico, Fabio Ashtar
See Also
FF.binary.ownership FF.binary.management FF.naive.ownership FF.naive.management FF.norm.ownership FF.norm.management
Examples
# Create the normalised FF matrix of Berkshire Hathaway's holdings by boards interlocks
data('firms_BKB')
FF <- FF(firms_BKB, who = 'man', ties = 'share')