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]
2 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]2 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
Fill in the blanks(science)
mamaluj [8]

Here you go!! these are all the ones i know, sorry but i hope you get a A+

3 0
2 years ago
Ronal asked 100 students to choose their favorite subject from among mathematics history and our she found that 22 students kill
Llana [10]

Answer:

I think 52% of students chose art

Step-by-step explanation:

7 0
3 years ago
How to solve 15a5b2 + 4a5b2
Deffense [45]

Answer:

19a^5b^2

Step-by-step explanation:

15a+4a=19a

4 0
3 years ago
If a ray bisects an angle, each newly formed angle measures 90 degrees.
prohojiy [21]

Answer:

A) Sometimes

A ) Sometimes is the correct answer because b) always and c) never is not possible

it cannot be always measured 90 degrees

3 0
2 years ago
Read 2 more answers
What is 3 tenths more than 8.154 ? What is 2 and 2 tenths more than 1.425? Explain please !
Anna11 [10]
8.454 is 3 tenths more than 8.154
3.625 is 2 and 2 tenths more than 1.425

Place values after the decimal point are tenths, hundredths, thousandths, ten thousandths...so on.

So 3 tenths looks like this 0.30 ⇒ 3 is in the tenths place. When you say 3 tenths more, it is a clue that the operation to be done is addition. thus,

   8.154
<u>+ 0.30
</u>   8.454   * in addition or subtraction, the decimal points must be aligned to avoid confusion. 

2 and 2 tenths is like this 2.20 ⇒ 1st 2 is in the ones or units place and the 2nd 2 is in the tenths place. Again it states more than so addition must be done.
 
   1.425
<u>+ 2.20</u>
   3.625
<u>

</u>
6 0
2 years ago
Read 2 more answers
Other questions:
  • A jar of jam contains 55% fruit.How much fruit would I need for ten 454g jars of jam?​
    8·2 answers
  • The square root of 5 is between which two integers? Explain your reasoning.
    11·2 answers
  • please help me At the soccer party, each player will get 1/3 of a pizza. If 24 come, how many pizzas are needed?
    8·2 answers
  • Find the area of the triangle with the given measurements. round the solution to the nearest hundredth if necessary. b = 107°, a
    14·1 answer
  • I am the largest number that rounds to 241.699 when rounded to the nearest thousandth. What number am I? Please explain how you
    6·1 answer
  • Is 70thounsand written in standard form or word form?explain
    12·1 answer
  • Plz someone help me with this question
    8·1 answer
  • How many different combinations of two can be made from 80 people?
    6·1 answer
  • Find 3 ratios that are equivalent to the given ratio.<br> 12:14
    6·1 answer
  • Y = 100 - 8.9x percent
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!