nth root of the column in R

nth root of the column in R is calculated using ‘^’ operator. Let’s see how to calculate nth root of a column in R with examples

First let’s create the dataframe

df1 = data.frame( Name = c('George','Andrea', 'Micheal','Maggie','Ravi','Xien','Jalpa'), 
                  Grade_score=c(4,6,2,9,5,7,8),
                  Mathematics1_score=c(45,78,44,89,66,49,72),
                  Science_score=c(56,52,45,88,33,90,47))

df1 will be

nth root of the column in R 1

 

Square root of  the column in R

Square root of the column Grade_score is calculated using ^() function as shown below.

## Square root of the column in R

df1$square_root ='^'(df1$Grade_score,1/2)
df1

So the resultant dataframe will be

nth root of the column in R 2

 

Cube root of the column in R

Cube root of the column Grade_score is calculated using ^() function as shown below.

## Cube root of the column in R

df1$cube_root ='^'(df1$Grade_score,1/3)
df1

So the resultant dataframe will be

nth root of the column in R 3

 

                                                                                                         

Author

  • Sridhar Venkatachalam

    With close to 10 years on Experience in data science and machine learning Have extensively worked on programming languages like R, Python (Pandas), SAS, Pyspark.