R Matrix

In this guide we will discuss about R Matrix. In R, a two-dimensional rectangular data set is known as a matrix. A matrix is created with the help of the…

Continue ReadingR Matrix

R Arrays

In R arrays are the data objects which allow us to store data in more than two dimensions. In R, an array is created with the help of the array() function. This…

Continue ReadingR Arrays

R Lists

In R lists are the second type of vector. Lists are the objects of R which contain elements of different types such as number, vectors, string and another list inside…

Continue ReadingR Lists

R Vector

R vector is a basic data structure which plays an important role in R programming. In R, a sequence of elements which share the same data type is known as vector. A…

Continue ReadingR Vector