How does cut with breaks work in R

0 votes
I've tried using?cut but haven't been able to figure out how cut in R works. I'm attempting to grasp how cut divides and makes intervals.
Herein lies my issue:

set.seed(111)
data1 – seq (1, 10, by = 1)
data1 [1] 1 2 3 4 5 6 7 8 9 10
cut(data1, labels = FALSE, breaks = c(0,1,2,3,5,7,8,10)) data1cut
data1cut\s[1] 1 2 3 4 4 5 5 6 7 7
1. Why were 8,9, and 10 left out of the data1cut results?
2. Why do the results of summary(data1) and summary(data1cut) differ?

summary(data1)
Minimum, First Quarter, Median, Third Quarter, Maximum 1.00 3.25 5.50 5.50 7.75 10.00

summary(data1cut)
Minimum, First Quarter, Median, Third Quarter, Maximum 1.00 3.25 4.50 4.40 5.75 7.00
How can I utilise cut more effectively to make, say, 4 bins?
Jul 6, 2022 in Data Science by avinash
• 1,840 points
337 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.

Related Questions In Data Science

0 votes
0 answers

How does cut with breaks work in R

I've tried using?cut but haven't been able ...READ MORE

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

How to deal with NaN values in R?

Due of my inexperience with programming and ...READ MORE

Jul 9, 2022 in Data Science by avinash
• 1,840 points
212 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
379 views
0 votes
1 answer

How to make loop for one-at-a time logistic regression in R?

You're probably looking for something similar to ...READ MORE

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

What does c do in R?

The c function in R programming usually stands ...READ MORE

answered Jun 1, 2022 in Data Science by Sohail
• 3,040 points

edited Nov 28, 2023 by Soumya 21,131 views
0 votes
1 answer

Creating new Functions with Linear Regression in R :

When we want to create a model ...READ MORE

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

Big Data transformations with R

Dear Koushik, Hope you are doing great. You can ...READ MORE

answered Dec 18, 2017 in Data Analytics by Sudhir
• 1,610 points
779 views
0 votes
2 answers

Transforming a key/value string into distinct rows in R

We would start off by loading the ...READ MORE

answered Mar 26, 2018 in Data Analytics by Bharani
• 4,660 points
855 views
0 votes
1 answer

Finding frequency of observations in R

You can use the "dplyr" package to ...READ MORE

answered Mar 26, 2018 in Data Analytics by Bharani
• 4,660 points
5,572 views
0 votes
1 answer

Left Join and Right Join using "dplyr"

The below is the code to perform ...READ MORE

answered Mar 27, 2018 in Data Analytics by Bharani
• 4,660 points
868 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