Compare commits

...

2 Commits

Author SHA1 Message Date
RD a54f71a848 master > master: notebook cleanup 2022-10-20 22:23:41 +02:00
RD 8ece98121d master > master: src - Formatierung von Plots 2022-10-20 22:15:58 +02:00
2 changed files with 4 additions and 6 deletions

View File

@ -48,8 +48,6 @@
"metadata": {},
"outputs": [],
"source": [
"A = np.random.randint(-100, 100, size=(4, 7));\n",
"\n",
"X = ['a', 'b', 'c', 'd', 'e'];\n",
"Y = [2, 3, 5, 7, 11, 13, 17];\n",
"Z = ['α', 'β', 'γ', 'δ'];\n",
@ -68,8 +66,6 @@
"metadata": {},
"outputs": [],
"source": [
"A = np.random.randint(-100, 100, size=(4, 7));\n",
"\n",
"X = randomset_alphabet(N=3);\n",
"Y = randomset_integers(N=5);\n",
"Z = randomset_greek(N=7);\n",

View File

@ -30,7 +30,8 @@ T2 = TypeVar('T2');
SCALE = (1., 4.);
OFFSET = (3., 0.);
MARGIN = 0.1;
HMARGIN = 0.1;
VMARGIN = 0.2;
N_RESOLUTION = 100;
ANNOTATE_OFFSET = (0, 10);
FONTSIZE_PTS = 10;
@ -84,9 +85,10 @@ class Functions:
'horizontalalignment': 'center',
'color': 'forestgreen',
});
axs.set_facecolor((0.9,0.9,0.9))
mplot.xlabel('');
mplot.ylabel('');
mplot.margins(x=MARGIN, y=MARGIN);
mplot.margins(x=HMARGIN, y=VMARGIN);
origin = np.asarray((0., 0.));
offset = np.asarray(OFFSET);