How to square all the values in a vector in R?

162.9k Views Asked by At

I would like to square every value in data, and I am thinking about using a for loop like this:

data = rnorm(100, mean=0, sd=1)
Newdata = {L = NULL;  for (i in data)  {i = i*i}  L = i  return (L)}
4

There are 4 best solutions below

1
On

Try this (faster and simpler):

newData <- data^2
1
On

This will also work

newData <- data*data
2
On

How about sapply (not really necessary for this simple case):

newData<- sapply(data, function(x) x^2)
0
On

This is another simple way:

sq_data <- data**2