Latest Blog Post

What is is.complex() function in R

What is is.complex() function in R

If you are working with imaginary components, you might want to find whether you are …

What is is.character() function in R

What is is.character() function in R

R does not have a “string” data type like other languages, but it does have …

What is is.vector() Function in R

What is is.vector() Function in R

A vector is a data structure that stores multiple values of the same type.  The …

What is is.null() Function in R

What is is.null() Function in R

Overview Whether working on a small program or project, if a function receives a “NULL” …

Calculating Natural Log in R

Calculating Natural Log using log() Function in R

Overview The easiest way to calculate the natural log of a number or vector in …

How to Convert List to Numeric in R

How to Convert List to Numeric in R

To convert a list to a numeric value in R, you can combine the unlist() …