In [9]:
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
data = [('year', 'location', 'attendees'),
(2002, 'Charleroi', 240),
(2003, 'Charleroi', 300),
(2004, 'Göteborg', 'nan'),
(2005, 'Göteborg', 'nan'),
(2006, 'Geneva', 'nan'),
(2007, 'Vilnius', 'nan'),
(2008, 'Vilnius', 206),
(2009, 'Birmingham', 410),
(2010, 'Birmingham', 446),
(2011, 'Florence', 670),
(2012, 'Florence', 760),
(2013, 'Florence', 870),
(2014, 'Berlin', 1250),
(2015, 'Bilbao', 1100),]
names = data[0]
eps = {name: [] for name in names}
for line in data[1:]:
for pos, name in enumerate(names):
eps[name].append(line[pos])
In [8]:
plt.plot(eps['year'], eps['attendees'])
Out[8]:
In [14]:
data = [('year', 'location', 'attendees'),
(2014, 'Bilbao', 0),
(2015, 'Bilbao', 1100)]
names = data[0]
eps = {name: [] for name in names}
for line in data[1:]:
for pos, name in enumerate(names):
eps[name].append(line[pos])
In [15]:
plt.plot(eps['year'], eps['attendees'])
Out[15]:
- Password and SSID: europython2015
- If problem:
* Move through the venue to find an antenna with a empty spot
* there is nobody in the venue that can solve
-For speakers
-Only if the wifi is not working properly
-In the helpdesk and info desk in case of emergency
In [17]:
from IPython.display import Image
Image('media/coc-bsol.gif')
Out[17]: