Hubert Baechli: ICMB portfolio
  • About
  1. Assignment 1:
    Hello World
  • hubert_baechli_ICMB_HS24
  • Assignment 1:
    Hello World
  • Assignment 2:
    Economic Simulation
    • Sketchbook
    • Notebook(Final)
  • Snippets
    • Beta Distribution
  • How knowledge is distributed
    in the population?
    Mayby!!
    • Simple learningcurve
    • with updated learn rate
    • Random meetings
    • Grouped in Slots
    • in a Day Structure
    • Areas of Knowledge
    • with prefernces
    • Selected Meetings
    • Bounded rationality

Assignment 1:
Hello World

  • Show All Code
  • Hide All Code

  • View Source
Author

Hubert Baechli

Hello World that’s my first plot: test

Code
hubi <- rnorm(10000, mean = 46, sd = 1)
hist(hubi)

Back to top
hubert_baechli_ICMB_HS24
Assignment 2:
Economic Simulation
Source Code
---
title: "Assignment 1: <br>Hello World"
author: "Hubert Baechli"
---

Hello World that's my first plot: test

```{r}
hubi <- rnorm(10000, mean = 46, sd = 1)
hist(hubi)
```