Added example snippets of the presentation.

This commit is contained in:
Hylke C. Donker
2022-02-17 11:50:55 +01:00
commit 635b784fba
4 changed files with 47 additions and 0 deletions

4
example/example.R Normal file
View File

@ -0,0 +1,4 @@
# Example function to be tested.
linear_transformation <- function(x) {
return (2*x + 1)
}