in-vehicle coupon recommendation dataset#

datasets 名#

vehicle_coupon

作成されるテーブル#

table_name

count

vehicle_coupon

12684

vehicle_coupon_train

8878

vehicle_coupon_test

3806

データセット#

destination

passanger

weather

temperature

time

coupon

expiration

gender

age

maritalStatus

CoffeeHouse

CarryAway

RestaurantLessThan20

Restaurant20To50

toCoupon_GEQ5min

toCoupon_GEQ15min

toCoupon_GEQ25min

direction_same

direction_opp

Y

0

No Urgent Place

Alone

Sunny

55

14:00

Restaurant(<20)

1d

Female

21

Unmarried partner

never

NaN

4~8

1~3

1

0

0

0

1

1

1

No Urgent Place

Friend(s)

Sunny

80

10:00

Coffee House

2h

Female

21

Unmarried partner

never

NaN

4~8

1~3

1

0

0

0

1

0

2

No Urgent Place

Friend(s)

Sunny

80

10:00

Carry out & Take away

2h

Female

21

Unmarried partner

never

NaN

4~8

1~3

1

1

0

0

1

1

3

No Urgent Place

Friend(s)

Sunny

80

14:00

Coffee House

2h

Female

21

Unmarried partner

never

NaN

4~8

1~3

1

1

0

0

1

0

4

No Urgent Place

Friend(s)

Sunny

80

14:00

Coffee House

1d

Female

21

Unmarried partner

never

NaN

4~8

1~3

1

1

0

0

1

0

背景#

kaggle から提供されているデータセット。

このデータは Amazon Mechanical Turk のアンケートで収集された。この調査では、目的地、現在時刻、天候、同乗者などを含むさまざまな運転シナリオを説明し、自分が運転手だった場合にクーポンを受け取るかどうかを尋ねる。

カラム#

#

Column

Dtype

説明

0

destination

string

目的地

1

passanger

string

同乗者は誰か

2

weather

string

天候

3

temperature

Int8

気温

4

time_hour

string

運転時の時間

5

coupon

string

クーポン

6

expiration

string

クーポン期限(1day or 2hour)

7

gender

string

性別

8

age

string

年齢

9

maritalStatus

string

結婚状況

10

has_children

Int8

子供の数

11

education

string

教育

12

occupation

string

職業

13

income

string

収入のレンジ

14

car

string

車種

15

Bar

string

月に何回バーに行くか

16

CoffeeHouse

string

月に何回コーヒーショップへ行くか

17

CarryAway

string

月に何回テイクアウトを利用するか

18

RestaurantLessThan20

string

月に何回$20以下のレストランへ行くか

19

Restaurant20To50

string

月に何回$20-$50のレストランへ行くか

20

toCoupon_GEQ5min

Int8

クーポンを利用するレストラン/バーまでの車での所要時間が5分以上であるかどうか。

21

toCoupon_GEQ15min

Int8

クーポンを利用するレストラン/バーまでの車での所要時間が15分以上であるかどうか。

22

toCoupon_GEQ25min

Int8

クーポンを利用するレストラン/バーまでの車での所要時間が25分以上であるかどうか。

23

direction_same

Int8

レストラン/バーが現在の目的地と同じ方向にあるかどうか。

24

direction_opp

Int8

レストラン/バーが現在の目的地と異なる方向にあるかどうか。

25

Y

Int8

クーポンを受け取ったか否か

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

col

unique

0

destination

[No Urgent Place, Home, Work]

1

passanger

[Alone, Friend(s), Kid(s), Partner]

2

weather

[Sunny, Rainy, Snowy]

3

temperature

[55, 80, 30]

4

time

[2PM, 10AM, 6PM, 7AM, 10PM]

5

coupon

[Restaurant(<20), Coffee House, Carry out & Ta…

6

expiration

[1d, 2h]

7

gender

[Female, Male]

8

age

[21, 46, 26, 31, 41, 50plus, 36, below21]

9

maritalStatus

[Unmarried partner, Single, Married partner, D…

10

has_children

[1, 0]

11

education

[Some college - no degree, Bachelors degree, A…

12

occupation

[Unemployed, Architecture & Engineering, Stude…

13

income

[37500−49999, 62500−74999, 12500−2…

14

car

[nan, Scooter and motorcycle, crossover, Mazda…

15

Bar

[never, less1, 1~3, gt8, nan, 4~8]

16

CoffeeHouse

[never, less1, 4~8, 1~3, gt8, nan]

17

CarryAway

[nan, 4~8, 1~3, gt8, less1, never]

18

RestaurantLessThan20

[4~8, 1~3, less1, gt8, nan, never]

19

Restaurant20To50

[1~3, less1, never, gt8, 4~8, nan]

20

toCoupon_GEQ5min

[1]

21

toCoupon_GEQ15min

[0, 1]

22

toCoupon_GEQ25min

[0, 1]

23

direction_same

[0, 1]

24

direction_opp

[1, 0]

25

Y

[1, 0]