1 Word processing

You can format text in bold or italic.

2 Code chunk

You want to calculate exp(1).

exp(1)
## [1] 2.718282

3 Plots

library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
data("volcano")
plot_ly(z = volcano, type = "surface")