1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Anton [14]
3 years ago
7

Make a histogram, using a bin width of ten, to display the bowling scores for these 31 players: 87, 104, 79, 94, 117, 82, 72, 11

6, 105, 95, 88, 93, 109, 119, 75, 103, 112, 97, 73, 85, 91, 86, 102, 99, 106, 84, 98, 83, 81, 96, 92.
Mathematics
1 answer:
slavikrds [6]3 years ago
7 0

Step-by-step explanation:

Using R, I used the following code to create a histogram:

bowling.scores <- c(87, 104, 79, 94, 117, 82, 72, 116, 105, 95, 88, 93, 109, 119, 75,  

                   103, 112, 97, 73, 85, 91, 86, 102, 99, 106, 84, 98, 83, 81, 96, 92)

data.frame(bowling.scores)

ggplot(data.frame(bowling.scores), aes(x=bowling.scores)) +  

 xlim(c(70, 120)) +

 scale_y_continuous(breaks = seq(0, 10, by=1), "Frequency") +

 geom_histogram(breaks=seq(70, 120, by=10), color="black", fill="grey60") +

 labs(title="Histogram of Bowling Scores", x="Bowling Scores", y="Frequency")

You might be interested in
A doctor's office has a computer file showing the heights of 100 male patients of one of the doctors of the practice. the height
kumpel [21]
A) Yes. we don't have enough information so this can not be determined.
B) No, it would just be an outlier.
7 0
3 years ago
HELP QUICK THIS IS DUE IN FIVE MINUTES!!!!!
Komok [63]
2 x (5-2)^3
2 x (3)^3
2 x 27
54
8 0
3 years ago
Read 2 more answers
Sin^2x/cos^2 + sinxcscx = sec^2x Identify it, please explain so I know how you did it, thanks
max2010maxim [7]

\frac{sin^2x}{cos^2x} + sin x *cscx\\ tan^2x + \frac{sin x}{sin x} \\ tan^2x + 1\\ sec^2x

\frac{sin^2x}{cos^2x} = tan^2x

csc x = \frac{1}{sinx}

tan^2x + 1 = sec^2x

6 0
3 years ago
Solve the compound inequality 6b &lt; 42 or 4b + 12 &gt; 8. (1 point)
Nitella [24]
6b<42
b<7
4b+12>8
4b>-4
b>-1
b>-1 or b<7
8 0
3 years ago
Michelle took a taxi home from the airport. The taxi fare was $2.25 per mile, and she gave the driver a tip of $5. Michelle paid
kipiarov [429]

Answer:The answer is C) 18

Step-by-step explanation:

7 0
3 years ago
Read 2 more answers
Other questions:
  • Which expression is equivalent to the expression shown ? 2 (x + 5) +3 (x2 - 5x +13)
    7·1 answer
  • The coordinates of the vertices of △JKL△JKL are J(1,4)J(1,4), K(6,4)K(6,4), and L(1,1)L(1,1). The coordinates of the vertices of
    5·2 answers
  • Heather and ashly are selling cheese cakes for a school fundraiser.customers can buy New York style cheese cake and strawberry c
    10·1 answer
  • Look at the equation below.
    15·1 answer
  • What value of x the given expression is undefined x+4/x-4​
    9·1 answer
  • What is the value of p in the equation below?
    14·1 answer
  • Which is the best estimate of 5 5/6 - (1 1/4 + 3 7/8)​
    14·1 answer
  • 5.4 Miles in 45 minutes
    11·1 answer
  • Luisa received 108 for a necklace she sold on an online auction. The auction site took a fee of 10% of the selling price. What w
    14·1 answer
  • Solve for A <br> ASAP ANSWER
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!