This commit is contained in:
DerGrumpf 2024-09-25 14:31:21 +02:00
parent 4b4c27031d
commit 57b7fa052f
26 changed files with 4740 additions and 63 deletions

4
.obsidian/app.json vendored
View File

@ -1 +1,3 @@
{} {
"alwaysUpdateLinks": true
}

View File

@ -5,5 +5,6 @@
"table-editor-obsidian", "table-editor-obsidian",
"colored-text", "colored-text",
"obsidian-charts", "obsidian-charts",
"obsidian-plugin-toc" "obsidian-plugin-toc",
"calendar"
] ]

5
.obsidian/daily-notes.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"format": "DD.MM.YYYY",
"folder": "Lectures",
"template": "Template/Lecture"
}

10
.obsidian/plugins/calendar/data.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"shouldConfirmBeforeCreate": true,
"weekStart": "locale",
"wordsPerDot": 250,
"showWeeklyNote": false,
"weeklyNoteFormat": "",
"weeklyNoteTemplate": "",
"weeklyNoteFolder": "",
"localeOverride": "system-default"
}

4457
.obsidian/plugins/calendar/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
{
"id": "calendar",
"name": "Calendar",
"description": "Calendar view of your daily notes",
"version": "1.5.10",
"author": "Liam Cain",
"authorUrl": "https://github.com/liamcain/",
"isDesktopOnly": false,
"minAppVersion": "0.9.11"
}

View File

@ -4,11 +4,11 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "b4f261a9933447ef", "id": "54e79292d1e2cd4b",
"type": "tabs", "type": "tabs",
"children": [ "children": [
{ {
"id": "b07c30b697388fd5", "id": "85d70f5e9df52245",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
@ -18,33 +18,8 @@
"source": false "source": false
} }
} }
},
{
"id": "c3f02da8459b175b",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Evaluation WiSe 24 25.md",
"mode": "source",
"source": false
}
}
},
{
"id": "846adf0f85a7ac21",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "README.md",
"mode": "source",
"source": false
}
}
} }
], ]
"currentTab": 2
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -110,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "README.md", "file": "Timetable.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -127,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "README.md", "file": "Timetable.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -150,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "README.md" "file": "Timetable.md"
} }
} }
}, },
@ -161,14 +136,21 @@
"type": "advanced-tables-toolbar", "type": "advanced-tables-toolbar",
"state": {} "state": {}
} }
},
{
"id": "e08c7694424865c6",
"type": "leaf",
"state": {
"type": "calendar",
"state": {}
}
} }
], ],
"currentTab": 4 "currentTab": 5
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 300, "width": 300
"collapsed": true
}, },
"left-ribbon": { "left-ribbon": {
"hiddenItems": { "hiddenItems": {
@ -181,12 +163,32 @@
"table-editor-obsidian:Advanced Tables Toolbar": false "table-editor-obsidian:Advanced Tables Toolbar": false
} }
}, },
"active": "846adf0f85a7ac21", "active": "85d70f5e9df52245",
"lastOpenFiles": [ "lastOpenFiles": [
"Lectures/12 17.01.2025.md",
"Lectures/08 06.12.2024.md",
"Lectures/04 08.11.2024.md",
"Lectures/10 03.01.2025.md",
"Lectures/01 18.10.2024.md",
"Timetable.md",
"Lectures/11 10.01.2025.md",
"Lectures/09 13.12.2024.md",
"Lectures/07 29.11.2024.md",
"Lectures/05 15.11.2024.md",
"Lectures/02 25.10.2024.md",
"Lectures/13 24.01.2025.md",
"Lectures/06 22.11.2024.md",
"Lectures/03 01.11.2024.md",
"Lectures/16 21.02.2025.md",
"Lectures/15 14.02.2025.md",
"Lectures/14 07.02.2025.md",
"Lectures/14 31.01.2025.md",
"Template/Lecture.md",
"Lectures",
"Template",
"Evaluation WiSe 23 24.md",
"Evaluation WiSe 24 25.md", "Evaluation WiSe 24 25.md",
"README.md", "README.md",
"Timetable.md",
"Evaluation WiSe 23 24.md",
"Pasted image 20240829151654.png" "Pasted image 20240829151654.png"
] ]
} }

15
Lectures/01 18.10.2024.md Normal file
View File

@ -0,0 +1,15 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Jorswiecks Part - doing the intro
- [ ] Umfrage
- [ ] Teilnehmer
- [ ] Studiengang
- [ ] Semester
- [ ] 3 CP oder 6 CP
- [ ] Ratefragen
- [ ] Strucktur des Kurses
- [ ] Spielregeln

17
Lectures/02 25.10.2024.md Normal file
View File

@ -0,0 +1,17 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Jupyter erklären
- [ ] Ausgabe - Tutorial 1
- [ ] Datentypen
- [ ] Variabeln
- [ ] Kommentare
- [ ] Sequentielle Datentypen
- [ ] Conditions
- [ ] If-Else
- [ ] While
- [ ] Funktionen

14
Lectures/03 01.11.2024.md Normal file
View File

@ -0,0 +1,14 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Tutorial 1
- [ ] Ausgabe - Tutorial 2
- [ ] For loops - Container Loops
- [ ] Dictionarys
- [ ] Error Handling
- [ ] System Interactionen
- [ ] Import

12
Lectures/04 08.11.2024.md Normal file
View File

@ -0,0 +1,12 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Tutorial 2
- [ ] Ausgabe - Extended Applications
- [ ] Deep Dive Funktionen
- [ ] Dataclasses -> Warum wir sonst kein OOP machen
- [ ] Built In Module

14
Lectures/05 15.11.2024.md Normal file
View File

@ -0,0 +1,14 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Extened Applications
- [ ] Ausgabe - MatPlotLib, NumPy
- [ ] Arrays Allgemein -> Warum ist der erste Index 0
- [ ] Warum NumPy
- [ ] Random Numbers
- [ ] Verschiedene Plots und ihre Wirkung
- [ ] Sorting Allgemein

12
Lectures/06 22.11.2024.md Normal file
View File

@ -0,0 +1,12 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen MatPlotLib, NumPy
- [ ] Ausgabe - SciPy
- [ ] Bernoulli Distributions
- [ ] Binomial Distributions
- [ ] Normal Distributions

11
Lectures/07 29.11.2024.md Normal file
View File

@ -0,0 +1,11 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen SciPy
- [ ] Ausgabe - Simulation
- [ ] Monte Carlo Theorie
- [ ] Average Human Height erklären -> Warum Simulieren

12
Lectures/08 06.12.2024.md Normal file
View File

@ -0,0 +1,12 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Simulation
- [ ] Ausgabe - Pandas, Seaborn
- [ ] Dataframes -> Warum
- [ ] Operationen auf Dataframes
- [ ] Seaborn -> Plots erklären

12
Lectures/09 13.12.2024.md Normal file
View File

@ -0,0 +1,12 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Pandas, Seaborn
- [ ] Ausgabe - Folium
- [ ] Weihnachten -> Kleinigkeit mitbringen
- [ ] Warum Folium
- [ ] HTML überblick

14
Lectures/10 03.01.2025.md Normal file
View File

@ -0,0 +1,14 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Folium
- [ ] Ausgabe - Statistical Test Methods
- [ ] T-Test Theorie
- [ ] Paerson Theorie
- [ ] Spearman Theorie
- [ ] Kendalltau Theorie

14
Lectures/11 10.01.2025.md Normal file
View File

@ -0,0 +1,14 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Statistical Test Methods
- [ ] Ausgabe - Data Analysis
- [ ] Erheben der Daten -> Alternative zu Google Forms finden https://github.com/formbricks/formbricks
- [ ] Wichtige Infos
- [ ] Annahmen Definieren
- [ ] Schritte genau Aufzeigen
- [ ] Konklusion Finden

10
Lectures/12 17.01.2025.md Normal file
View File

@ -0,0 +1,10 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content
- [ ] Lösungen Data Analysis
- [ ] Ausgabe - Projekte
- [ ] Projekte Festlegen
- [ ] Prüfungsparameter erklären

View File

@ -0,0 +1,6 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content

View File

@ -0,0 +1,6 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content

View File

@ -0,0 +1,6 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content

View File

@ -0,0 +1,6 @@
---
parent:
tags:
- exam
---
# Content

View File

@ -0,0 +1,6 @@
---
parent:
tags:
- exam
---
# Content

6
Template/Lecture.md Normal file
View File

@ -0,0 +1,6 @@
---
parent: "[[Lecture]]"
tags:
- Lecture
---
# Content

View File

@ -1,26 +1,23 @@
```ad-example
**Every Friday from 15-16.30h** **Every Friday from 15-16.30h**
| Date | Subject (6 CP) <span style="color:rgb(255, 0, 0)">(3 CP)</span> | Content | | Date | Subject (6 CP) <span style="color:rgb(255, 0, 0)">(3 CP)</span> |
| ---------- | --------------------------------------------------------------- | ------- | | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 18.10.2024 | Organization | | | [[01 18.10.2024]] | Organization |
| 25.10.2024 | Tutorial 1 | | | [[02 25.10.2024]] | Tutorial 1 - Printing, Datentypen & Variablen, Sequentielle Datentypen, Funktionen, If-Else Conditions, While-Loops |
| 01.11.2024 | Tutorial 2 | | | [[03 01.11.2024]] | Tutorial 2 - For Loops, Dictionarys, Error Handling, System Interactions, Import Statements |
| 08.11.2024 | Numpy / Matplotlib | | | [[04 08.11.2024]] | <span style="color:rgb(255, 0, 0)">Extended applications - Funktionen, Dataclasses, Built-In Modules</span> |
| 15.11.2024 | <span style="color:rgb(255, 0, 0)">Simulation</span> | | | [[05 15.11.2024]] | Matplotlib - Plotting Functions, Styling, Bar Plots, Pie Plots<br>Numpy - Arrays, Space Reservation, Sorting, Random Numbers |
| 22.11.2024 | Pandas / <span style="color:rgb(255, 0, 0)">Folium</span> | | | [[06 22.11.2024]] | SciPy - Bernoulli Distribution, Binomial Distribution, Normal Distribution |
| 29.11.2024 | Statistical Test Methods | | | [[07 29.11.2024]] | <span style="color:rgb(255, 0, 0)">Simulation - Monte Carlo, Normal Distributions</span> |
| 06.12.2024 | <span style="color:rgb(255, 0, 0)">Data Analysis</span> | | | [[08 06.12.2024]] | Pandas - Dataframes, Series, Zugriff Operationen, Statistische Funktionen<br><span style="color:rgb(255, 0, 0)">Seaborn - Distribution Plots, Errorbars, Multiplots, Annotated Heatmaps</span> |
| 13.12.2024 | Projects | | | [[09 13.12.2024]] | <span style="color:rgb(255, 0, 0)">Folium - Maps, Marker, (HTML) Popups, Tooltips</span> |
| 20.12.2024 | Canceled | | | 20.12.2024 | Canceled |
| 27.12.2024 | Canceled | | | 27.12.2024 | Canceled |
| 03.01.2025 | Self Studie | | | [[10 03.01.2025]] | Statistical Test Methods - T-Test, Pearson-, Spearman- & Kendalltest |
| 10.01.2025 | Self Studie | | | [[11 10.01.2025]] | <span style="color:rgb(255, 0, 0)">Data Analysis - Analysieren eines Beispieldatensets</span> |
| 17.01.2025 | Self Studie | | | [[12 17.01.2025]] | Projects |
| 24.01.2025 | Self Studie | | | [[13 24.01.2025]] | Self Studie |
| 31.01.2025 | Self Studie | | | [[14 31.01.2025]] | Self Studie |
| 07.02.2025 | Possible exam date | | | [[14 07.02.2025]] | Free Time |
| 14.02.2025 | Possible exam date | | | [[15 14.02.2025]] | Exam date |
| 21.02.2025 | Possible exam date | | | [[16 21.02.2025]] | Exam date |
```