What is set seed in R

0 votes
What is set.seed () in R? why is it used in regression and k-means clustering?
Jul 9, 2019 in Data Analytics by riya
39,095 views

1 answer to this question.

0 votes

Let me explain in simple words,

set seed (value) where value specifies the initial value of the random number seed.

Syntax: set.seed(123)

In the above line,123 is set as the random number value.

The main point of using the seed is to be able to reproduce a particular sequence of 'random' numbers. and sed(n) reproduces random numbers results by seed.

For more information for set.seed() read below pdf of few pages that explains all about set.seed() in detail.

https://www.stata.com/manuals13/rsetseed.pdf

When the k-means clustering algorithm runs, set.seed() is used a randomly generated seed to determine the starting centroids of the clusters.

k-means-clustering-effect-of-random-seed

answered Jul 9, 2019 by anonymous
• 33,030 points
Thanks for the info,  can you provide example with small data set?
Hi@Sarfaraz,

Please go through the above-given link. You will get some good examples.

Related Questions In Data Analytics

0 votes
1 answer
0 votes
1 answer

Why should I use set.seed function() in R?

set.seed(seed) Set the seed of R‘s random number ...READ MORE

answered Apr 24, 2018 in Data Analytics by zombie
• 3,790 points
1,721 views
0 votes
1 answer

What is the standard naming convention for the variables in R?

Use of period separator e.g. product.prices <- c(12.01, ...READ MORE

answered Apr 25, 2018 in Data Analytics by shams
• 3,670 points
534 views
0 votes
1 answer

What is the difference between library () and require () functions in R ?

 library() require() Library () function gives an error message ...READ MORE

answered Sep 5, 2018 in Data Analytics by zombie
• 3,790 points
2,488 views
0 votes
1 answer

By using dpylr package sum of multiple columns

Basically here we are making an equation ...READ MORE

answered Apr 5, 2018 in Data Analytics by DeepCoder786
• 1,720 points
2,098 views
0 votes
1 answer

How to convert a text mining termDocumentMatrix into excel or csv in R?

By assuming that all the values are ...READ MORE

answered Apr 5, 2018 in Data Analytics by DeepCoder786
• 1,720 points
1,746 views
0 votes
1 answer