-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathexample.py
More file actions
293 lines (254 loc) · 11.7 KB
/
example.py
File metadata and controls
293 lines (254 loc) · 11.7 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
"""
Example 1
"""
# Load packages
import pandas as pd
import seaborn as sns
from gilfoyle import report
# ====================================================================================================================
# Set up the report
# ====================================================================================================================
# Create a report
pdf = report.Report(output='example.pdf')
pdf.set_title('Gilfoyle example')
pdf.set_accent_background_color('#9f85ca')
pdf.set_accent_font_color('#fff')
# Create an empty payload
payload = pdf.get_payload()
# ====================================================================================================================
# Chapter cover
# ====================================================================================================================
payload = pdf.add_page(payload,
page_type='chapter',
page_title='Gilfoyle',
page_subheading='Various examples')
# ====================================================================================================================
# Simple layout with dataframe
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion Rate', 'Revenue', 'AOV']).head(13)
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='simple',
page_title='Simple layout, dataframe',
page_dataframe=df
)
# ====================================================================================================================
# Simple layout with dataframe and metrics comparing last month to last year
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion rate', 'Revenue', 'AOV']).head(13)
# Add metrics
metrics = [
pdf.add_metric_tile(
metric_title='Sessions',
metric_value_now=df['Sessions'].loc[0],
metric_value_before=df['Sessions'].loc[12],
metric_name='year'
),
pdf.add_metric_tile(
metric_title='Conversion rate',
metric_value_now=df['Conversion rate'].loc[0],
metric_value_before=df['Conversion rate'].loc[12],
metric_name='year',
metric_suffix='%'
),
pdf.add_metric_tile(
metric_title='Transactions',
metric_value_now=df['Transactions'].loc[0],
metric_value_before=df['Transactions'].loc[12],
metric_name='year'
),
pdf.add_metric_tile(
metric_title='AOV',
metric_value_now=round(df['AOV'].loc[0], 2),
metric_value_before=df['AOV'].loc[12],
metric_name='year',
metric_prefix='£'
),
pdf.add_metric_tile(
metric_title='Revenue',
metric_value_now=df['Revenue'].loc[0],
metric_value_before=df['Revenue'].loc[12],
metric_name='year',
metric_prefix='£'
),
]
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='simple',
page_title='Simple layout, dataframe, YoY metrics',
page_dataframe=df,
page_metrics=metrics,
)
# ====================================================================================================================
# Simple layout with dataframe and metrics comparing last month to previous month
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion rate', 'Revenue', 'AOV']).head(13)
# Add metrics
metrics = [
pdf.add_metric_tile(
metric_title='Sessions',
metric_value_now=df['Sessions'].loc[0],
metric_value_before=df['Sessions'].loc[1],
metric_name='month'
),
pdf.add_metric_tile(
metric_title='Conversion rate',
metric_value_now=df['Conversion rate'].loc[0],
metric_value_before=df['Conversion rate'].loc[1],
metric_name='month',
metric_suffix='%'
),
pdf.add_metric_tile(
metric_title='Transactions',
metric_value_now=df['Transactions'].loc[0],
metric_value_before=df['Transactions'].loc[1],
metric_name='month'
),
pdf.add_metric_tile(
metric_title='AOV',
metric_value_now=round(df['AOV'].loc[0], 2),
metric_value_before=df['AOV'].loc[1],
metric_name='month',
metric_prefix='£'
),
pdf.add_metric_tile(
metric_title='Revenue',
metric_value_now=df['Revenue'].loc[0],
metric_value_before=df['Revenue'].loc[1],
metric_name='month',
metric_prefix='£'
),
]
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='simple',
page_title='Simple layout, dataframe, MoM metrics',
page_dataframe=df,
page_metrics=metrics,
)
# ====================================================================================================================
# Simple layout with dataframe and no metrics comparison
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion rate', 'Revenue', 'AOV']).head(13)
# Add metrics
metrics = [
pdf.add_metric_tile(
metric_title='Sessions',
metric_value_now=df['Sessions'].loc[0],
),
pdf.add_metric_tile(
metric_title='Conversion rate',
metric_value_now=df['Conversion rate'].loc[0],
metric_suffix='%'
),
pdf.add_metric_tile(
metric_title='Transactions',
metric_value_now=df['Transactions'].loc[0],
),
pdf.add_metric_tile(
metric_title='AOV',
metric_value_now=round(df['AOV'].loc[0], 2),
metric_prefix='£'
),
pdf.add_metric_tile(
metric_title='Revenue',
metric_value_now=df['Revenue'].loc[0],
metric_prefix='£'
),
]
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='simple',
page_title='Simple layout, dataframe, metrics (no comparison)',
page_dataframe=df,
page_metrics=metrics,
)
# ====================================================================================================================
# Left commentary layout with dataframe and notification message
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion Rate', 'Revenue', 'AOV']).head(13)
# Define commentary
page_commentary = """
To add a commentary section to your report you need to define a block of text and use HTML to add markup.<br><br>
There's quite a bit of room in the left-commentary layout to support adding lengthy commentary and also adding a
notification message to alert readers to specific points.
"""
# Define message
page_message = {'message': 'This is a page message', 'style': 'warning'}
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='left-commentary',
page_title='Left-commentary layout, dataframe, commentary, notification, warning message',
page_dataframe=df,
page_commentary=page_commentary,
page_notification='This is a notification',
page_message=page_message,
)
# ====================================================================================================================
# Simple layout with dataframe
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion Rate', 'Revenue', 'AOV']).head(13)
# Define message
page_message = {'message': 'This is a page message', 'style': 'danger'}
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='simple',
page_title='Simple layout, dataframe, danger message',
page_dataframe=df,
page_message=page_message,
)
# ====================================================================================================================
# Simple layout with dataframe and visualisation
# ====================================================================================================================
# Load a Pandas dataframe and return 13 rows
df = pd.read_csv('https://raw.githubusercontent.com/flyandlure/datasets/master/monthly-ecommerce-data.csv',
skiprows=1,
names=['Period', 'Sessions', 'Transactions', 'Conversion Rate', 'Revenue', 'AOV']).head(13)
# Define commentary
page_commentary = """
To add a visualisation you need to use either the "plot" or "left-commentary" layouts, save the image to a file and
pass in the filename to the "page_visualisation" argument. You will want to tweak the image size so it sits perfectly on your report page.
"""
# Generate a visualisation and save the image
sns.set(rc={'figure.figsize': (15, 6)})
line_plot = sns.lineplot(x='Period', y='Sessions', data=df)
line_plot.figure.savefig("lineplot.png")
# Add the dataframe to the payload
payload = pdf.add_page(payload,
page_type='report',
page_layout='plot',
page_title='Plot layout, visualisation, commentary',
page_dataframe=df,
page_commentary=page_commentary,
page_visualisation='lineplot.png',
)
# ====================================================================================================================
# Render the report
# ====================================================================================================================
# Create the report
pdf.create_report(payload, verbose=False, output='pdf')
print('Created example.pdf')