Categories: R Series

What is Vector in R?

Even when you write just one value in R, it becomes a vector of length 1 and belongs to one of the above vector types.

Vectors are generally created using the c() function.

c means “combine”. In R, numbers are just vectors of length one. All the things that can be done with a single number can also be done with a vector.

A vector must-have elements of the same type, this function will try and coerce elements to the same type if they are different.

Coercion is from lower to higher types from logical to integer to double to character.

> x <- c(0, 1, 2, 3, 4)
> typeof(x)
[1] "double"
> length(x)
[1] 5
> x <- c(5, 2.4, TRUE, "hello world")
> x
[1] "5"     "2.4"   "TRUE"  "hello world"
> typeof(x)
[1] "character"

Using colon operator with numeric data

If we want to create a vector of consecutive numbers, we can this : operator.

# Create a sequence from 1 to 5.
> v <- 1:5
> print(v)
[1] 1 2 3 4 5

# Create a sequence from 5.5 to 10.5
> v <- 5.5:10.5
> print(v)
[1] 5.5 6.5 7.5 8.5 9.5 10.5

Using sequence (Seq.) operator

More complex sequences can be created using the seq() function, like defining number of points in an interval, or the step size.

# specify the step size
> seq(1, 2, by=0.2)          
[1] 1.0 1.2 1.4 1.6 1.8 2.0
# specify length of the vector creating 4 equal partition from 1 to 5
> seq(1, 5, length.out=4)    
[1] 1.000000 2.333333 3.666667 5.000000

Access Elements of a Vector

We can access elements of a Vector by using indexing. [ ] brackets are to do indexing. Indexing starts with position 1. Giving a negative value in the index drops that element from the result.TRUE, FALSE, or 0 and 1 can also be used for indexing.

> x
 <- seq(0, 10, by=2); x
[1]  0  2  4  6  8 10

# To access 3rd element
 
> x[3]           
[1] 4
 

# To access 2nd and 4th element
> x[c(2, 4)]     
[1] 2 6

# To access elements from 2nd to 4th 
> x[c(2:4)]
 [1] 2 4 6

# To access all except 2nd element
> x[-2]          
[1]  0  4  6  8 10

# real numbers will auto convert to integers
> x[c(2.4, 3.54)]    
[1] 2 4

Modify a vector 

We can modify a vector using the assignment operator.

> x
 <- c(1:5); x
[1] 1 2 3 4 5

# TO modify 2nd element
> x[2] <- 0; x        
[1] 1 0 3 4 5

# TO modify elements less than 3
> x[x<3] <- 0; x   
[1] 0 0 3 4 5

Delete a Vector

To delete any vector we simply assign a NULL to it

> x
 <- c(1:7)
[1] 1 2 3 4 5 6 7 

# To delete the vector assign NULL
> x <- NULL
> x
NULL

# Now the vector is NULL you cannot access any elements of it
> x[4]
NULL

Conclusion

We covered how to create a vector, what is c() function how to use it. How to use : operator in vector,
how to modify a vector, and delete a vector.

This brings the end of this Blog. We really appreciate your time.

Hope you liked it.

Do visit our page www.zigya.com/blog for more informative blogs on Data Science

Keep Reading! Cheers!

Zigya Academy
BEING RELEVANT

Zigya Acadmey

Share
Published by
Zigya Acadmey

Recent Posts

Understanding Standard Form of Numbers: An Explanation With Examples

Through the standard form offers different advantages in mathematical calculations and scientific notation. Firstly, it…

5 months ago

How to deal with stress and anxiety in college

Introduction Stress is a feeling caused by an external trigger that makes us frustrated, such…

6 months ago

Why is Sociology Important These Days?

Sociology is a broad discipline that examines societal issues. It looks at the meaningful patterns…

6 months ago

How to Convert Inches to mm

Some info about Inch Inches are a unique measure that persuades us that even the…

8 months ago

Antilogarithms – Definition, Methods, and Examples

You should be familiar with logarithms to understand antilogarithms in a better manner. Logarithms involve…

10 months ago

नाटककार सुरेंद्र वर्मा

यहां "नाटककार सुरेंद्र वर्मा" पुस्तक की पीडीएफ विद्यार्थी, शोधार्थी और जो इसका अभ्यास के लिए…

10 months ago