my first project

This is only the demonstration of r markdown. Here, I will find the mean of a vector in R. Let introduce a variable x

x=c(34,34,56,56,54)

For computing mean of x, we will use mean command that is a built-in function in R.

Mean=mean(x)
Mean
## [1] 46.8

Note: This is the class demonstration only