A matrix is a two-dimensional array in R. It contains the collection of elements of the same data type (numeric, […]
Author: Oindrila Sen
A decade of experience in collecting, cleaning and visualizing data. But now I am learning and practicing new tools and different techniques.
Let's dig and find out what is the story behind that Data. Let's do it together! Let's solve, fail and try again because discovering something new is always fun.
Assignment on Vectors in R
Just now, I thought of an assignment using the concepts I learned in Vectors. Let’s start! Problem: Let’s plan what […]
Accessing the Vector Elements in R
Problem: Access the Elements of a Vector Solution: Elements of a Vector can be accessed using indexing. The [ ] brackets are used […]
Name the Elements Of a Vector in R
Problem: Naming the elements of a Vector Solution: To give a name to the elements of a vector, we can […]
Create a Vector in R
Vectors are one-dimension arrays that can hold numeric data, character data, or logical data, but not a mixture of different […]
R – The Basic Data Types & Basic Operations
To start programming in any language, we may need to create variables to store some information. Now, this information can […]