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

[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 9, 2022 in Data Science by avinash
• 1,840 points
291 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 6, 2022 in Data Science by avinash
• 1,840 points
331 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
209 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

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
775 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 20,895 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
362 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
764 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
836 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,543 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
855 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