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
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)