From 7e8166207e5f9e6f502c8e0e8a5ef7093905acda Mon Sep 17 00:00:00 2001 From: Anno Knierim Date: Tue, 24 Sep 2024 16:20:40 +0200 Subject: [PATCH] Update matplotlib html --- files/archive/2024/matplotlib.html | 23016 +++++++++------------------ 1 file changed, 7527 insertions(+), 15489 deletions(-) diff --git a/files/archive/2024/matplotlib.html b/files/archive/2024/matplotlib.html index 8a6bc335..8cd14faf 100644 --- a/files/archive/2024/matplotlib.html +++ b/files/archive/2024/matplotlib.html @@ -3,16190 +3,7901 @@ -matplotlib +matplotlib + + - - - - - - - -
-
-
-
-
-
-

Datenvisualisierung mit

Matplotlib

-
-
-
-
-
-
-

Um mit Matplotlib arbeiten zu können, muss die Bibliothek erst einmal importiert werden. -Damit wir nicht so viel tippen müssen, geben wir ihr den kürzeren Namen plt.

-
-
-
-
-
-
In [1]:
-
-
-
from IPython.display import Image
-
-import matplotlib.pyplot as plt
-
-plt.rcParams["figure.figsize"] = (10, 8)
-plt.rcParams["font.size"] = 16
-plt.rcParams["lines.linewidth"] = 2
-
-
-
-
-
-
-
-
-

Außerdem brauchen wir der Einfachheit halber ein paar Funktionen aus numpy, die dir schon bekannt vorkommen sollten.

-
-
-
-
-
-
In [2]:
-
-
-
import numpy as np
-
-x = np.linspace(0, 1)  # gibt 50 Zahlen in gleichmäßigem Abstand von 0–1
-
-
-
-
-
-
-
-
-

Zu erst ein einfaches Beispiel mit $f(x)=x^2$. -Um den Text-Output in diesem Notebook zu unterdrücken, schreiben wir manchmal ein ; hinter die letzte Zeile.

-

Im Folgenden verwenden wir die objekt-orientierte Schreibweise von matplotlib, die mehr Möglichkeiten und Freiheiten bietet. -Diese rufst du mit

-
-
-
-
-
-
In [3]:
-
-
-
fig, ax = plt.subplots()
-
-ax.plot(x, x**2);
-
-
-
-
-
-
-
-
-
-No description has been provided for this image -
-
-
-
-
-
-
-
-

auf. -Du hast dann ein Objekt figure fig und ein Objekt axes ax, mit denen du interagieren und die Einstellungen im plot vornehmen kannst.

-

Das Objekt figure ist dabei die gesamte Abbildung, auf der sich Axen, labels und Text befinden können. -Die einzelnen axes Objekte sind die jeweiligen Koordinatensysteme, in die man die entsprechenden Daten plottet. -Mit diesen können auch Informationen über die Einheiten und Darstellung mit den Achsen definiert werden.

-

Anderes Beispiel: $\sin(t)$ mit verschiedenen Stilen. Vorsicht, die Funktionen und $\pi$ sind Bestandteil von numpy.

-
-
-
-
-
-
In [4]:
-
-
-
t = np.linspace(0, 2 * np.pi)
-
-fig, ax = plt.subplots()
-ax.plot(t, np.sin(t));
-
-
-
-
-
-
-
-
-
-No description has been provided for this image -
-
-
-
-
-
-
-
In [5]:
-
-
-
fig2, ax2 = plt.subplots()
-ax2.plot(t, np.sin(t), "r--");
-
-
-
-
-
-
-
-
-
-No description has been provided for this image -
-
-
-
-
-
-
-
In [6]:
-
-
-
ax.cla()
-ax.plot(t, np.sin(t), "go")
-fig
-
-
-
-
-
-
-
-
Out[6]:
-
-No description has been provided for this image -
-
-
-
-
-
-
-
-

Tabelle mit einigen Farben und Stilen: matplotlib.axes.Axes.plot

-

Tabellen mit allen Farben und Stilen:

- -
-
-
-
-
-
-

Der Vorteil ist nun, dass du z.B. mehrere Objekte fig und ax parallel benutzen und nachträglich wieder auf das vorherige zugreifen kannst.

-

Du kannst so auch im Nachhinein noch Dinge verändern und trotzdem die andere figure unverändert lassen.

-
-
-
-
-
-
In [7]:
-
-
-
fig
-
-
-
-
-
-
-
-
Out[7]:
-
-No description has been provided for this image -
-
-
-
-
-
-
-
-

Neue Grenzen mit set_xlim(a, b) und set_ylim(a, b)

-
-
-
-
-
-
In [8]:
-
-
-
ax.set_xlim(0, 2 * np.pi)
-ax.set_ylim(-1.2, 1.2)
-fig
-
-
-
-
-
-
-
-
Out[8]:
-
-No description has been provided for this image -
-
-
-
-
-
-
-
In [9]:
-
-
-
fig2
-
-
-
-
-
-
-
-
Out[9]:
-
-No description has been provided for this image -
-
-
-
-
-
-
-
-

Es fehlt noch etwas...

-
-
-
-
-
-
In [10]:
-
-
-
# https://imgs.xkcd.com/comics/convincing.png
-Image(filename="images/xkcd-convincing.png")
-
-
-
-
-
-
-
-
Out[10]:
-
-No description has been provided for this image -
-
-
-
-
-
-
-
In [11]:
-
-
-
with plt.xkcd():
-    fig, ax = plt.subplots()
-
-    ax.set_title("Axes with labels")
-    ax.plot(t, np.sin(t))
-    ax.set_xlabel("t / s")
-    ax.set_ylabel("U / V")
-    ax.set_ylim(-1.1, 1.1)
-    ax.set_xlim(0, 2 * np.pi);
-
-
-
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Neue' not found.
-
-
-
-
-
-
-
findfont: Font family 'Comic Sans MS' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd' not found.
-
-
-
-
-
-
-
findfont: Font family 'xkcd Script' not found.
-
-
+ + + + + + + + + +
+