Skip to content

Instantly share code, notes, and snippets.

View graebnerc's full-sized avatar

Claudius Graebner-Radkowitsch graebnerc

View GitHub Profile
@graebnerc
graebnerc / # Skript zu Tag 3 - Wiederholungsfragen Data Prep
Created July 15, 2024 12:27
Einführung in R (Frühjahrssemester 2024): Tag 3 - Recap
The notes made on the questions that you posed during day 3 on the content from day 2.
@graebnerc
graebnerc / # Skript zu Tag 3 - Visualisierung
Last active July 15, 2024 11:40
Einführung in R (Frühjahrssemester 2024): Tag 3 - Visualisierung
Hier findet sich das Skript zur Entwicklung der beiden Beispielabbildung, die wir im Kurs am 15. Juli 2024 entwickelt haben, sowie den weiteren Visualisiserungsnotizen.
@graebnerc
graebnerc / # Skript zu Tag 2
Created July 8, 2024 19:25
Einführung in R (Frühjahrssemester 2024): Tag 2
Hier sind alle Notizen und Aufgabenlösungen zu Tag 2 (8. Juli 2024).
@graebnerc
graebnerc / # Skript zu Tag 1
Created July 1, 2024 14:30
Einführung in R (Frühjahrssemester 2024): Tag 1
Hier sind alle Notizen und Aufgabenlösungen zu Tag 1 (1. Juli 2024).
@graebnerc
graebnerc / LinearRegression.R
Created June 21, 2024 13:02
Notes from the lecture on simple linear regression
library(tibble)
library(ggplot2)
library(moderndive)
# 1. Implement linear regression-----------------
# Make a shortcut to the data:
beer_data <- as_tibble(DataScienceExercises::beer)
head(beer_data)
# Conduct the linear regression:
@graebnerc
graebnerc / #MCS-Tutorial exercises
Last active June 10, 2024 08:08
Solutions to the MCS tutorial exercises
Solutions to the exercises that are mentioned in the tutorial on Monte Carlo Simulations.
@graebnerc
graebnerc / # Sampling
Last active June 7, 2024 14:59
Code used during the lecture on sampling.
Code used during the lecture on sampling.
@graebnerc
graebnerc / #T9: Solution
Last active May 7, 2024 21:49
#T9: Possible solution for the Quarto task
The Netlify version can be found at: https://quarto-ex-solution.netlify.app/
@graebnerc
graebnerc / DesasterMarkdown.qmd
Last active May 7, 2024 21:29
The original code for the Markdown desaster and a possible solution, both written in Quarto.
---
title: "What a desaster!"
author: "Claudius"
date: '2024-05-07'
format: pdf
---
# Packages used
```{r}
library(tidyverse)
@graebnerc
graebnerc / # Data Preparation: solutions
Last active May 6, 2024 19:33
Solutions for the exercises in the session on data preparation.
Solutions for the exercises in the session on data preparation.