rnorm function in R - Usage

0 votes

I understand the normal usage of rnorm (pardon the pun)

rnorm(n, mean = 0, sd = 1)

However, I came across the code below and I am not sure what the 2nd input array does as the mean.

y <- rnorm(12, rep(c(1,2,1), each=4),0.2)
Jun 13, 2022 in Data Science by Avinash
• 1,260 points
301 views

1 answer to this question.

0 votes

y = rnorm(12, rep(c(1,2,1), each=4, 0.2))
I can explain this in the following way:

Create four normal random variables with mean 1 and standard deviation 0.2.
Create four normal random variables with mean 2 and standard deviation 0.2.
Create four normal random variables with mean 1 and standard deviation 0.2.
You can accomplish this in a single line rather than having to write a for loop or multiple pieces of code. That is what makes R sweet.

The code you see above is that. In a single line, all three claims.

Discover the world of data with our Data Science Course and embark on a transformative journey towards analytical excellence.

answered Jun 24, 2022 by Sohail
• 3,040 points

Related Questions In Data Science

0 votes
1 answer

Unexpected behavior for setdiff() function in R

Asymmetric difference is provided by 18 setdiff. ...READ MORE

answered Jun 24, 2022 in Data Science by Sohail
• 3,040 points
622 views
0 votes
0 answers

To speed up the tapply function in R, or another function to convert data frame into a matrix

I must turn a sizable dataset into ...READ MORE

Jun 24, 2022 in Data Science by Sohail
• 3,040 points
204 views
0 votes
0 answers

In R, how to get an object's name after it is sent to a function?

I'm trying to find the opposite of ...READ MORE

Jul 5, 2022 in Data Science by avinash
• 1,840 points
177 views
0 votes
1 answer

sample function in R

It seems like you are experiencing an ...READ MORE

answered Sep 8, 2023 in Data Science by anonymous
• 1,180 points
430 views
0 votes
0 answers

Understanding of minbucket function in CART model using R

Let's say that the training data is ...READ MORE

Jul 20, 2022 in Data Science by avinash
• 1,840 points
259 views
0 votes
0 answers

Introduction to Statistical Learning with Applications in R Figure Codes

I recently bought the following book: An Introduction ...READ MORE

Jun 1, 2022 in Data Science by avinash
• 1,840 points
369 views
0 votes
1 answer

Difference between the == and %in% operators in R

percent in percent "returns a vector of ...READ MORE

answered Jun 20, 2022 in Data Science by Sohail
• 3,040 points
438 views
0 votes
1 answer

Difference between the == and %in% operators in R

According to help('percent in percent'), percent in ...READ MORE

answered Jun 23, 2022 in Data Science by Sohail
• 3,040 points
230 views
0 votes
1 answer

How to implement Knn-algorithm without using k-nn function in r?

I created an example that demonstrates the ...READ MORE

answered Jun 24, 2022 in Data Science by Sohail
• 3,040 points
268 views
0 votes
1 answer

Problem with sample function in R

The first time works, but after that, ...READ MORE

answered Jun 24, 2022 in Data Science by Sohail
• 3,040 points
302 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP