How breaks and cut works in R

0 votes
How ‘breaks’ and ‘ cut’ works in R?
Oct 14, 2019 in Data Analytics by ch
• 3,450 points
3,332 views

1 answer to this question.

0 votes

@ch,

Cut divides the range of x into intervals and codes the values in x according to which interval they fall. breaks indicate the number of levels or intervals required to categorize the values.

Example:

> c = c(1:50)
> cut(c,breaks = 3)
 [1] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3]
 [9] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3] (0.951,17.3]
[17] (0.951,17.3] (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7] 
[25] (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7]  (17.3,33.7] 
[33] (17.3,33.7]  (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]   
[41] (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]    (33.7,50]   
[49] (33.7,50]    (33.7,50]   
Levels: (0.951,17.3] (17.3,33.7] (33.7,50]
answered Oct 14, 2019 by rohan

Related Questions In Data Analytics

0 votes
1 answer

How can we trim leading and trailing whitespaces in R?

trimws {base} //Remove Leading/Trailing Whitespace Removes leading and/or ...READ MORE

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

How to filter a data frame with dplyr and tidy evaluation in R?

Requires the use of map_df to run each model, ...READ MORE

answered May 17, 2018 in Data Analytics by DataKing99
• 8,240 points
1,630 views
0 votes
1 answer

How to forecast season and trend of data using STL and ARIMA in R?

You can use the forecast.stl function for the ...READ MORE

answered May 19, 2018 in Data Analytics by DataKing99
• 8,240 points
1,952 views
0 votes
1 answer

How to calculate group mean and assign it to new data in R

You can use something like this: df$grp.mean.values <- ...READ MORE

answered Jun 27, 2018 in Data Analytics by Sahiti
• 6,370 points
1,549 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,013 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,621 views
0 votes
1 answer

In a dpylr pipline how to use sample and seq?

For avoiding rowwise(), I prefer to use ...READ MORE

answered Apr 6, 2018 in Data Analytics by DeepCoder786
• 1,720 points

edited Jun 9, 2020 by Gitika 908 views
0 votes
1 answer

How to create a list of Data frames?

Basically all we have to do is ...READ MORE

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

How to convert a continuous variable to discrete variable and vice versa in R?

Discretize function convert a continuous variable into ...READ MORE

answered Nov 4, 2019 in Data Analytics by rajeev
3,897 views
+1 vote
1 answer

In R programming language, how do I export data in .txt?

See this image for ways to export ...READ MORE

answered Oct 11, 2019 in Data Analytics by ashwini
488 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