Example Student: ICMB portfolio
  • About
  1. Assignment 1: Hello World
  • About
  • Assignment 1: Hello World

Assignment 1: Hello World

  • Show All Code
  • Hide All Code

  • View Source
Author

Example Student

In this introductory assignment, I just want you to make a simple plot. Here is an example:

Code
x <- rnorm(10000, mean = 100, sd = 15)
hist(x)

Code
source("my_functions.R")
hello("Ven")
[1] "Hello Ven"
Back to top
About
Source Code
---
title: "Assignment 1: Hello World"
author: "Example Student"
---

In this introductory assignment, I just want you to make a simple plot. Here is an example:

```{r}
x <- rnorm(10000, mean = 100, sd = 15)
hist(x)
```

```{r}
source("my_functions.R")
hello("Ven")
```