adspace


What is the recycling of elements in a vector? Give an example.

Answer Posted / Pradeep Kumar Mahto

Recycling in R refers to the automatic extension or shortening of vectors when they are combined with vectors of different lengths. For example, if you add a scalar (single value) to a vector, R will recycle the scalar to match the length of the vector.nExample: c(1,2,3) + 4 will result in c(5,6,7).

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Given a vector of numbers, how would you turn the values into scientific notation?

172


How will you convert a factor variable to numeric in r language?

213


How can you verify if a given object “X” is a matrix data object?

188