vault backup: 2025-07-21 18:17:57

Affected files:
.obsidian/workspace.json
0 Journal/0 Daily/2025-07-21.md
Temporary/Pandas.md
This commit is contained in:
2025-07-21 18:17:57 +02:00
parent e02590473f
commit a4e1c875f0
3 changed files with 43 additions and 12 deletions

View File

@@ -57,12 +57,12 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "0 Journal/0 Daily/2025-07-18.md", "file": "0 Journal/0 Daily/2025-07-21.md",
"mode": "source", "mode": "source",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "2025-07-18" "title": "2025-07-21"
} }
}, },
{ {
@@ -94,7 +94,7 @@
} }
} }
], ],
"currentTab": 4 "currentTab": 3
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -380,8 +380,23 @@
"icon": "lucide-file", "icon": "lucide-file",
"title": "AI Agents" "title": "AI Agents"
} }
},
{
"id": "6154fa36d4764b0f",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Temporary/Pandas.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Pandas"
}
} }
] ],
"currentTab": 2
} }
], ],
"direction": "vertical", "direction": "vertical",
@@ -394,12 +409,13 @@
} }
] ]
}, },
"active": "22b62bffb3b4f91c", "active": "bdfbce663bd8ceb1",
"lastOpenFiles": [ "lastOpenFiles": [
"Temporary/n8n.md",
"2 Personal/Lists/Business Ideas.md",
"0 Journal/0 Daily/2025-07-18.md", "0 Journal/0 Daily/2025-07-18.md",
"Temporary/n8n.md",
"Temporary/Pandas.md",
"0 Journal/0 Daily/2025-07-21.md", "0 Journal/0 Daily/2025-07-21.md",
"2 Personal/Lists/Business Ideas.md",
"Temporary/AI Agents.md", "Temporary/AI Agents.md",
"Attachments/Pasted image 20250721142129.png", "Attachments/Pasted image 20250721142129.png",
"Attachments/Pasted image 20250721140942.png", "Attachments/Pasted image 20250721140942.png",
@@ -431,7 +447,6 @@
"Excalidraw/Drawing 2025-06-30 16.39.01.excalidraw.md", "Excalidraw/Drawing 2025-06-30 16.39.01.excalidraw.md",
"Attachments/Pasted image 20250630155216.png", "Attachments/Pasted image 20250630155216.png",
"Attachments/madgwick_internal_report.pdf", "Attachments/madgwick_internal_report.pdf",
"Temporary/2025-06-29.md",
"Dashboard Canvas.canvas", "Dashboard Canvas.canvas",
"Attachments/Pasted image 20250627101456.png", "Attachments/Pasted image 20250627101456.png",
"99 Work/0 OneSec/OneSecNotes/40 - User Manuals", "99 Work/0 OneSec/OneSecNotes/40 - User Manuals",

View File

@@ -34,8 +34,5 @@ ___
--- ---
## OneSec Pilot Planning ## OneSec Pilot Planning
### Status Quo
- [ ] How can I build an agent to help with the pilot planning?
### Goal: Where do we want to be for the Pilot Project?
-

19
Temporary/Pandas.md Normal file
View File

@@ -0,0 +1,19 @@
---
title: Pandas
created_date: 2025-07-21
updated_date: 2025-07-21
aliases:
tags:
---
# Pandas
## Stack, Unstack
Unstack converts a multi index into a column index
Stack converts a multi column into a multi index
## Melting and Pivoting
They are very specific --> you can do stack and unstack to achieve the same result
## get_dummies()
You can get categorical data (sex: male / female) into 2 columns: sex_Male (0 / 1), sex_Female (0/ 1)