Area of Rectangle

R Programming Language / Operators in R Language

1262

Program:

height <- 2
width <- 3
area <- height * width
area

Output:

> area
[1] 6

Explanation:

This program shows you how to calculate the area of Rectangle in R programming Language

This Particular section is dedicated to Programs only. If you want learn more about R Programming Language. Then you can visit below links to get more depth on this subject.