print.eloTable: Print call for eloTable object

Description Usage Arguments Details Examples

Description

Prints each item in EloTable list and head of the elo update table.

Usage

1
2
## S3 method for class 'eloTable'
print(eloTab)

Arguments

eloTab

an object of the class "eloTable"

Details

Prints only the head of the eloTable data.frame omitting initial scores

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# generate generic data
interactions <- data.frame (a = sample (letters [1:10], 100, T),
                            b = sample (letters [1:10], 100, T),
                            o = sample (c(-1,-1,0,1,1), 100, T),
                            d = Sys.time () + runif (100, 40, 160))
# convert to interData object
id1 <- intTableConv (interactions)
# produce eloTable object
et1 <- eloTable (id1)
print (et1)

nmmarquez/linHierarchy documentation built on May 23, 2019, 9:28 p.m.