Skip to content

Tag Archives: R Object-Function

max() function in R Language is used to find the maximum element present in an object. This object can be a Vector, a list, a… Read More
rbind() function in R Language is used to combine specified Vector, Matrix or Data Frame by rows. Syntax: rbind(x1, x2, …, deparse.level = 1) Parameters:… Read More
nrow() function in R Language is used to return the number of rows of the specified matrix.  Syntax: nrow(x)Parameters: x: matrix, vector, array or data frame  … Read More
names() function in R Language is used to get or set the name of an Object. This function takes object i.e. vector, matrix or data… Read More
prod() function in R Language is used to return the multiplication results of all the values present in its arguments. Syntax: prod(…) Parameters: …: numeric… Read More
length() function in R Programming Language is used to get or set the length of a vector (list) or other objects. Getting the length of… Read More
ncol() function in R Language is used to return the number of columns of the specified matrix.  Syntax: ncol(x)Parameters: x: matrix, vector, array or data frame  … Read More
rowMeans() function in R Language is used to find out the mean of each row of a data frame, matrix, or array. Syntax: rowMeans(data) Parameter:… Read More
unique() function in R Language is used to remove duplicated elements/rows from a vector, data frame or array. Syntax: unique(x) Parameters: x: vector, data frame,… Read More

Start Your Coding Journey Now!