| pybonacci.org (kiko@pybonacci.org) |
| @pybonacci |
| kikocorreoso |
Louis Pasteur
In [1]:
import os
import matplotlib.pyplot as plt
from matplotlib import rcParams
%matplotlib inline
In [2]:
plt.xkcd()
rcParams['font.size'] = 20
In [3]:
fig = plt.figure(figsize = (10, 10))
ax = fig.add_subplot(1, 1, 1)
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.spines['left'].set_color('none')
ax.spines['bottom'].set_color('none')
plt.xticks([])
plt.yticks([])
plt.xlim(0, 100)
plt.ylim(0,100)
plt.annotate('Openness', xy=(25, 50), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Openness', xy=(75, 50), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Openness', xy=(50, 65), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Open access', xy=(70, 50), arrowprops=dict(arrowstyle='->'), xytext=(40, 60))
plt.annotate('Open Data', xy=(50, 25), arrowprops=dict(arrowstyle='->'), xytext=(15, 45))
plt.annotate('Open Data', xy=(65, 45), arrowprops=dict(arrowstyle='->'), xytext=(15, 45))
plt.annotate('Open Source', xy=(50, 25), arrowprops=dict(arrowstyle='->'), xytext=(65, 45))
plt.text(40, 20, 'Open Science')
plt.savefig('./misc/openness01.png')
In [4]:
fig = plt.figure(figsize = (10, 10))
ax = fig.add_subplot(1, 1, 1)
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.spines['left'].set_color('none')
ax.spines['bottom'].set_color('none')
plt.xticks([])
plt.yticks([])
plt.xlim(0, 100)
plt.ylim(0,100)
plt.annotate('Openness', xy=(25, 50), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Openness', xy=(75, 50), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Openness', xy=(50, 65), arrowprops=dict(arrowstyle='->'), xytext=(50, 90))
plt.annotate('Open access', xy=(70, 50), arrowprops=dict(arrowstyle='->'), xytext=(40, 60))
plt.annotate('Open Data', xy=(50, 25), arrowprops=dict(arrowstyle='->'), xytext=(15, 45))
plt.annotate('Open Data', xy=(65, 45), arrowprops=dict(arrowstyle='->'), xytext=(15, 45))
plt.annotate('Open Source', xy=(50, 25), arrowprops=dict(arrowstyle='->'), xytext=(65, 45))
plt.annotate('Open Source', xy=(80, 35), arrowprops=dict(arrowstyle='->'), xytext=(65, 45))
plt.text(40, 20, 'Open Science')
plt.text(70, 30, 'Open Lab')
plt.savefig('misc/openness02.png')