-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.view.lkml
125 lines (104 loc) · 2.02 KB
/
users.view.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
view: users {
sql_table_name: demo_db.users ;;
dimension: id {
primary_key: yes
type: number
sql: ${TABLE}.id ;;
tags: ["user_id","groupId"]
}
dimension: age {
type: number
sql: ${TABLE}.age ;;
}
dimension: age_tier {
type: tier
tiers: [10, 18, 25, 40, 55, 65, 75, 90, 110]
style: integer
sql: ${age} ;;
tags: ["segment_group_id"]
}
dimension: city {
type: string
sql: ${TABLE}.city ;;
}
filter: testing {
type: string
suggest_dimension: city
}
dimension: country {
type: string
map_layer_name: countries
sql: ${TABLE}.country ;;
}
dimension_group: created {
type: time
timeframes: [
raw,
time,
date,
week,
month,
quarter,
year
]
sql: ${TABLE}.created_at ;;
}
dimension: email {
type: string
sql: ${TABLE}.email ;;
tags: ["email"]
}
dimension: first_name {
type: string
sql: ${TABLE}.first_name ;;
tags: ["first_name"]
}
dimension: gender {
type: string
sql: ${TABLE}.gender ;;
}
dimension: last_name {
type: string
sql: ${TABLE}.last_name ;;
tags: ["last_name"]
}
dimension: state {
type: string
sql: ${TABLE}.state ;;
}
dimension: zip {
type: zipcode
sql: ${TABLE}.zip ;;
}
measure: count {
type: count
drill_fields: [detail*]
link: {label: "Explore Top 20 Results by Sale Price" url: "https://dcleu.eu.looker.com/looks/134?toggle=fil,pik" }
}
dimension: perc_test_dim {
type: number
sql: ${age}/${id};;
value_format: "0.0%"
}
measure: perc_test_two {
type: number
sql: COUNT(distinct ${city})/COUNT(distinct ${id})-1;;
value_format: "+#,##0.00%;(#,##0.00%)"
}
measure: fake_decimal {
type: number
value_format: "0.0%"
sql: 1.0 * 55/100 ;;
}
# ----- Sets of fields for drilling ------
set: detail {
fields: [
id,
first_name,
last_name,
events.count,
orders.count,
user_data.count
]
}
}