Transition matrix from TD sample datasets#

datasets 名#

transition_matrix

作成されるテーブル#

table_name

count

transition_matrix

12

データセット#

source

target

count

1

/category

/category

941

2

/category

/item

605

3

/item

/category

470

4

/item

/item

271

5

/search

/item

267

背景#

TD の User Engagement Site の旧サイトのアクセスログを元に、source から target ページ(path)への遷移を集計したもの。Network Analysis 向けのデータセット。

カラム#

#

Column

Dtype

説明

0

source

string

遷移元の path

1

target

string

遷移先の path

2

count

integer

遷移回数

カラム値のバリエーション#

col

unique

0

source

[NULL, /category, /item, /search]

1

target

[/category, /item, /search]

2

count

[1454, 941, 605, 470, 469, 271, 267, 185, 147,…