4. Hafta

R Markdown

R Markdown üretilen içeriklerin yayımlanmasında kullanılan işlevsel bir programdır.

#R'da temel islemler

F1<-function(x,y){
  x+y
}
F1(2,3)
## [1] 5

Grafik Ekleme

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.

hist(cars$dist)