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
sveta [45]
3 years ago
6

Notice that the percentages range from just over 55% to just under 65%. This is a range of 10%, so we're going to use 5 evenly-s

paced bins (the first bin will go from 55-57, the second bin will go from 57-59, the third bin will go from 59-61, and so on). Let's use the histogram function from the numpy package to help create the histogram. Write the appropriate code to: Import the numpy package as np Execute the np.histogram() function with two arguments: the list that shows the percentage of paid tax preparers (already given in the code cell below) and the bins. Save the result of np.histogram() into a variable called hist (i.e., the line of code should start with hist
Computers and Technology
1 answer:
vfiekz [6]3 years ago
7 0

Answer:

import numpy as np

l_int = 55/100

h_int = 65/100

hist = np.histogram( paid_tax_preparers_list, bins=5, range=(l_int, h_int))

Explanation:

Numpy is a Python package used to ease mathematical and statistical research calculations. The package creates data structures called arrays that can be used as vector items, making it easy and fast for calculation to be done.

The np.histogram method is used to create or plot histograms of a list or array against the frequency of the items in the array. The bins and the range attributes are used to adjust the display of the histogram, with bins being the number of bin in the graph and range is the given length of the histogram.

You might be interested in
True or false
ICE Princess25 [194]
1. True
2. Usually true, but it depends on the search engine you're using.  For example, Google lets you search for several words without commas.
3 0
3 years ago
Can you think of any other disruptive or nontraditional ways of earning that you could use the Internet?
denis23 [38]

Explanation:

The internet is a tool that has revolutionized the way communication is carried out. As it is a dynamic tool with easy access for any user, it is possible to use different platforms or social media to realize disruptive or non-traditional forms of earnings.

Some of them could be the dissemination of links that would generate advertising for other companies, or the free dissemination in social media of services, and several other innovations that use the internet as the main means to manufacture an extra income, such as online teaching, advertising for third parties etc.

7 0
3 years ago
Which kind of testing runs the system in a simulated environment using simulated data?a) validation testing. b) verification tes
faust18 [17]

Answer: verification testing

Explanation:

Verification testing is the testing that runs the system in a simulated environment using simulated data. Verification testing involves different activities like design review, system requirements, business requirements, and code walkthrough which are used while a a product is being developed. It is done in order to ensure they the right product is being developed.

4 0
3 years ago
Select all that apply. When you cut text from a document, you may: leave it in the clipboard paste in into another document past
Leni [432]

Answer:

copy it into another location

Explanation:

3 0
3 years ago
Read 2 more answers
Use tar to create a full compressed back up of the /var/log folder. Use the bzip2 compression. The name of the archive should be
Komok [63]

Answer:

mkdir ~/home/backups

tar -cjf YOURFIRSTNAME.tar.bz /var/log

mv YOURFIRSTNAME.tar.bz ~/home/backups

Explanation:

The bash script makes a new directory called backups in the home directory then archives and compresses the log files in the /var/log folder. Then the compressed file is moved to the newly created backups folder.

5 0
3 years ago
Other questions:
  • The Internet has made it possible for most people to order all of their clothing online. While this may be a preference for some
    5·1 answer
  • A company is a Microsoft 365 reseller. The company does not provide managed services or direct customer support. You need to pro
    10·1 answer
  • Identify at least three body language messages that project a positive attitude?
    15·1 answer
  • How can you achieve an effect like that shown in the image?
    7·2 answers
  • Zachary was frustrated. His computer was running very slowly and he was worried that it was reducing his productivity on the job
    15·1 answer
  • What is logical memory?
    15·1 answer
  • After you design and write your help-desk procedures to solve problems, what should you do next?
    10·1 answer
  • What is the best anime of all time?​
    11·1 answer
  • What should you do if your computer is running slower
    12·1 answer
  • The __________ gear is the input gear.<br> A. Drive<br> B. Driven
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!