Here is an example to compute Area of a Rectangle in R.
height <- 7
width <- 8
area <- height * width
area
Output [1] 56
Foresight from Insight
Here is an example to compute Area of a Rectangle in R.
height <- 7
width <- 8
area <- height * width
area
Output [1] 56