shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
pdf
keyboard_arrow_up
School
William Rainey Harper College *
*We aren’t endorsed by this school
Course
MISC
Subject
Statistics
Date
Feb 20, 2024
Type
Pages
7
Uploaded by elliebat
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
1/7
Homework 6: Data Mining Overview
You have been hired as a consultant by a laptop retailing ±rm, SmartRetail
.
SmartRetail
faces stiff competition in this space. In order to be pro±table and survive, the company needs to predict the price points of laptops
with different speci±cations.
Your task is to predict the market price of a given laptop speci±cation with the least amount of prediction error.
In particular, the ±rm's sales department wants to understand how different components contribute to the Retail Price
. The Retail Price
is
measured in dollars. For some transactions, this value may not have been captured due to a glitch in the system.
Different components and the way they are measured are listed below:
Screen Size
is in inches
Battery Life
in Hours
RAM
in GB
HD Size
in GB
Processing Speeds
in GHz
Integrated Wireless
and Bundled Applications
have a Yes or No value according to the customer's choice
Problem Statement
Your goals are to do the following:
1. Identify the factors that explain the variance in the price of a Laptop
2. Predict the Retail Price of a Laptop
To achieve these goals you must perform exploratory data analysis (EDA) and prepare the data for modeling.
Therefore, in this notebook you will perform the following tasks:
1. Clean the data for duplicates (if any) and missing values (if any)
2. Perform EDA
3. Prepare the data for Modeling (Dummy Coding and Data Partitioning).
Once you have completed these tasks, answer the accompanying questions in the Canvas quiz.
In HW 7 (on Multiple Linear Regression), you will perform the next steps, which are ±tting two types of linear regression models (explanatory
and predictive).
Business Goals
Coding and Analysis
Before you begin, let's upgrade seaborn
.
!pip install seaborn --upgrade
Looking in indexes: https://pypi.org/simple
, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: seaborn in /usr/local/lib/python3.9/dist-packages (0.11.2)
Collecting seaborn
Downloading seaborn-0.12.2-py3-none-any.whl (293 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
293.3/293.3 KB 3.7 MB/s eta 0:00:00
Requirement already satisfied: matplotlib!=3.6.1,>=3.1 in /usr/local/lib/python3.9/dist-packages (from seaborn) (3.5.3)
Requirement already satisfied: numpy!=1.24.0,>=1.17 in /usr/local/lib/python3.9/dist-packages (from seaborn) (1.22.4)
Requirement already satisfied: pandas>=0.25 in /usr/local/lib/python3.9/dist-packages (from seaborn) (1.3.5)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->seaborn
Requirement already satisfied: pyparsing>=2.2.1 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->seab
Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->sea
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->seabo
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->seaborn)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->sea
Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.9/dist-packages (from matplotlib!=3.6.1,>=3.1->
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.9/dist-packages (from pandas>=0.25->seaborn) (2022.7.1)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.9/dist-packages (from python-dateutil>=2.7->matplotlib!=3.6
Installing collected packages: seaborn
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
2/7
Attempting uninstall: seaborn
Found existing installation: seaborn 0.11.2
Uninstalling seaborn-0.11.2:
Successfully uninstalled seaborn-0.11.2
Successfully installed seaborn-0.12.2
Next, import the following packages and functions using suitable aliases: pandas
, numpy
, matplotlib.pyplot
, seaborn
, and
train_test_split
.
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.model_selection import train_test_split
%matplotlib inline
Next, load the dataset into a dataframe named lsales_df
from https://raw.githubusercontent.com/ashish-cell/BADM-211-
FA21/main/Data/laptop_hw6.csv
.
lsales_df = pd.read_csv('https://raw.githubusercontent.com/ashish-cell/BADM-211-FA21/main/Data/laptop_hw6.csv')
For future reference, let's check how many rows and columns there are.
lsales_df.shape
(5963, 10)
STEP 1: Display the ±rst 7 rows of the dataset.
(1 pt)
Your output should look like this:
Transaction_ID
Configuration
Screen_Size
Battery_Life
RAM
Processor_Speeds
Integrated_Wireless
HD_Size
Bundled_Appli
0
5622
51
15
4
2
1.5
Yes
80
1
52758
695
17
5
4
2.0
Yes
300
2
977
299
15
6
1
1.5
No
80
3
215756
303
15
6
1
1.5
No
300
4
294662
394
15
6
4
1.5
No
40
5
150118
603
17
5
1
2.0
No
80
6
265452
512
17
4
2
2.0
No
300
# Write the code for step 1 here
lsales_df.head(7)
Q1:
Which of these conclusions can you draw based on only the output shown above?
1. There are three Screen Sizes.
2. The maximum Retail Price (across all laptops) is 550.
3. Processor Speeds vary between 2.0 and 2.4
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
3/7
4. None of these
STEP 2a: Show the number of duplicate rows in the dataset.
(1 pt)
# Write the code for step 2a here
lsales_df.duplicated().sum()
12
Q2:
Which of the following is correct with respect to the output of Step 2.
1. There are 12 duplicate columns in the dataset
2. There are 12 duplicate rows in the dataset
3. There are 5963 duplicate rows in the dataset
4. None of these
STEP 2b: Remove the duplicate rows, if any.
(1 pt)
(You may want to compare the number of rows/columns before and after this step to ensure you did it correctly.)
# Write the code for step 2b here
lsales_df.drop_duplicates(inplace=True)
lsales_df.shape
(5951, 10)
STEP 3a: Show the total number of missing values for each column.
(1 pt)
# Write the code for step 3a here
lsales_df.isnull().sum()
Transaction_ID 0
Configuration 0
Screen_Size 0
Battery_Life 0
RAM 0
Processor_Speeds 0
Integrated_Wireless 0
HD_Size 0
Bundled_Applications 0
Retail_Price 293
dtype: int64
Q3:
Which of the following is correct with respect to the output of STEP 3. (Select all that apply)
1. There is only one column with missing values
2. The count of missing values in the Retail_Price column is 293
3. The proportion of rows with missing values in any column is less than 10% of the overall dataset.
4. None of these.
STEP 3b: Drop rows with missing values.
(1 pt)
(You may want to compare the number of rows/columns before and after this step to ensure you did it correctly.)
# Write the code for step 3b here
lsales_df.dropna(inplace=True)
STEP 4: Generate a bar chart to show the mean Retail Price by HD Size, and distinguishing by Battery_Life within each HD Size category.
(2
pts)
Your output should look like this:
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
4/7
# Write the code for step 6 here
sns.barplot(x=lsales_df["HD_Size"],y=lsales_df["Retail_Price"],hue=lsales_df["Battery_Life"],estimator="mean")
plt.show()
Q4:
Referring to the visualization created for Step 6, what can be concluded?
1. For any Battery_Life, the average price of a laptop with 300 GB HD is higher than that of a laptop with 120 GB.
2. The most expensive laptop in our data was the one with 300 GB HD_Size and 6 hours of Battery_Life.
3. The least expensive laptop in our data was the one with 40 GB HD_Size and 4 hours of Battery_Life.
4. None of these.
STEP 5: Generate a visualization to show relationship between Con±guration and Retail Price.
(1 pt)
Your output should look like this:
# Write the code for step 7 here
sns.scatterplot(x=lsales_df["Configuration"],y=lsales_df["Retail_Price"])
plt.show()
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
5/7
Q5:
Referring to the scatterplots describing Con±guration and Retail Price, choose the correct answer.
1. There appears to be strongly negative linear relationship between these two predictors.
2. Almost all of the observations have a Retail Price of less than $400.
3. The record with the highest Retail Price has a Con±guration of 600.
4. The record with the highest Retail Price has a Con±guration of more than 800.
STEP 6: Remove unnecessary columns.
(1 pt)
The ±rst column of the dataframe is Transaction_ID
. This is not a valid predictor, so we must remove it.
After doing so, display the names of the remaining columns. This step must be completed for the rest to be accurate.
Your output should look like this: # Write the code for step 9 here
lsales_df=lsales_df.drop(columns=["Transaction_ID"])
lsales_df.columns
Index(['Configuration', 'Screen_Size', 'Battery_Life', 'RAM',
'Processor_Speeds', 'Integrated_Wireless', 'HD_Size',
'Bundled_Applications', 'Retail_Price'],
dtype='object')
STEP 7: Dummy Coding
(2 pts)
Perform dummy coding for the categorical variables.
One-hot encode (AKA (dummy code) the variables Integrated_Wireless
and Bundled_Applications
, and display the variable names for the entire
dataset.
Pay close attention to the name and number of variables. We need to do this step correctly to prepare for multiple linear regression.
You can choose to overwrite the existing dataframe or save this output to a new dataframe that you will use going forward.
Your output should look like this:
# Write the code for step 11 here
lsales_df_dummy = pd.get_dummies(lsales_df, columns=["Integrated_Wireless","Bundled_Applications"],drop_first=True)
lsales_df_dummy.columns
Index(['Configuration', 'Screen_Size', 'Battery_Life', 'RAM',
'Processor_Speeds', 'HD_Size', 'Retail_Price',
'Integrated_Wireless_Yes', 'Bundled_Applications_Yes'],
dtype='object')
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
6/7
STEP 8: Create predictors and outcome variable
(1 pt)
Create an object named X
to include all predictors. Create an object named y
that holds the Retail Price
variable. Print the number rows and
columns in X
and y
.
Your output should look like this:
# Write the code for step 12 here
x = lsales_df.drop(columns = ["Retail_Price"])
y = lsales_df["Retail_Price"]
print(x.shape)
print(y.shape)
(5658, 8)
(5658,)
STEP 9: Train Test Split
(2 pts) Using the train_test_split
function, split the dataset into two parts: 60% of the samples into train_X and
train_y and 40% of the samples into test_X and test_y. Enter a random seed value of seven. Display the shape of the training data and test data
predictors.
Your output should look like this
# Write the code for step 13 here
train_x, test_x, train_y, test_y = train_test_split(x, y, test_size = .4,random_state=7)
print("Train X:", train_x.shape, "\nTest X:", test_x.shape)
Train X: (3394, 8) Test X: (2264, 8)
Configuration
Screen_Size
Battery_Life
RAM
Processor_Speeds
Integrated_Wireless
HD_Size
Bundled_Applications
2363
169
15
5
1
2.0
No
40
Yes
469
82
15
4
2
2.4
Yes
40
No
5915
391
15
6
4
1.5
Yes
300
Yes
4894
77
15
4
2
2.0
No
120
Yes
5485
590
17
5
1
1.5
No
120
No
# Use this cell to help in answering Q6
train_x.head()
Q6:
Look at the ±rst 5 rows of the dataframe with the training predictor variables. What is the value of Con±guration
for the record displayed
±rst?
1. 318
2. 27
3. 169
4. 506
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
3/12/23, 10:16 PM
shurenb2_HW 6 EDA + Data Prep_student.ipynb - Colaboratory
https://colab.research.google.com/drive/1d8ev2LynLiXY-icoWg7KzyfUVjg1zGqq#scrollTo=tpLWPXW4NmMu&printMode=true
7/7
0s
completed at 10:15 PM
Related Documents
Related Questions
M
ui/v2/assessment-player/index.html?launchld=3cb6995a-a464-4ce8-9952-7c527abd86ce#/question/2
-/1 E
Question 3 of 14
View Policies
Current Attempt in Progress
A company has cost and revenue functions, in dollars, given by C(q) = 6000 + 8g and R(g) = 12g.
(a) Find the cost and revenue if the company produces 500 units. Does the company make a profit? What about 5000 units?
Enter the exact answers without comma separation of digits.
The cost of producing 500 units is $
i
The revenue if the company produces 500 units is $ i
Thus, the company
v a profit.
The cost of producing 5000 units is $
The revenue if the company produces 5000 units is $i
Thus, the company
v a profit.
eTextbook and Media
(b) Find the break-even point.
Enter the exact answer.
The break-even point is i
units.
eTextbook and Media
Which of tbe fellowina illust
break even point aranbically?
ssion_..docx
2 Discussion_-..docx
- Discussion_...docx
MacBook Pro
arrow_forward
Learn
+
A blackboard.sanjac.edu/webapps/blackboard/content/contentWrapper.jsp?course_id%3 3201092_1&displayName=My
Gmail
O YouTube
Maps
a News
O Translate
SPRING 2021
My San Jac
Courses
Student S
lyopenMath (MOM)
Question 33
A bag of M&M's has 5 red, 6 green, 4 blue, and 2 yellow M&M's. Suppose you randomly select two
M&M's from the bag one at a time without replacing the first M&M.
Let A = first M&M is red and B = second M&M is yellow.
Find the following probabilities. (Write your answers as fractions.)
a) P(A) =
b) P(B | A) =
C) P(A and B) =
Question Help: D Post to forum
Submit Question
DELL
F8
F4
F1
F2
F3
&
%23
%24
8.
6.
4
1
W #
arrow_forward
P Do Homework-Section 14 Hom x
+ > C O
A mathxl.com/Student/PlayerHomework.aspx?homeworkld=606462636&questionld=1&flushed false&cld=6635326&back=https://www.mathxl.com/Student/DoAssignments.as
O Watch Wrestling -. G Google Microsoft account .
Tri-County Cineplex. V Make Your Own Ga.e https//ahometown. Doxy.me - Dr. Cam. f Jacob Grant Hamilt. O Hamilton Univers
Fall 2021 Algebra: Polynomials (MAT-112A-012, MAT-112A-CR1, MAT-112A-MN1)
HW Sc
E Homework: Section 1.4 Homework
Question 1, 1.4.1
Score:
Write the equation of the line with slope 4 and y-intercept
The equation of the line is
(Simplify your answer. Type an equation using x and y as the variables. Use integers or fractions for any numbers in the equation.
Enter your answer in the answer box and then click Check Answer.
Help Me Solve This
View an Example
Get More Help -
P Type here to search
A * S - O
F5
F7
F10
F11
F12
F1
F3
F4
6Backspace
41
RI
T
U
Tab
D
H.
J.
K
1Enter
Caps
Lock
arrow_forward
plse answer
arrow_forward
number 8.
arrow_forward
The percentage of students i'm coming up with is saying incorrect, please assist
arrow_forward
P Chrome - Do Homework - HW #12 = 8.4, 9.1, 9.2
A mathxl.com/Student/PlayerHomework.aspx?homeworkld3610059707&questionld=5&flushed%-true&cld%3D6700191¢erw
Math for Aviation I
E Homework: HW #12 = 8.4, 9.1, 9.2
Question 6, 8.
For an arc length s, area of sector A, and central angle 0 of a circle of radius r, find the indicated quantity for the given values.
A= 15.3 m2, r=4.02 m, s = ?
S=
m (Type an integer or decimal rounded to two decimal places as needed.)
Help me solve this
View an example
Get more help -
DELL
arrow_forward
Quiz for Chapter 21 LearningCur X +
/learningcurve.macmillanlearning.com/?user_id=3e6bfbb2-26e7-11ed-9c99-653e998b9738&file=stats%2Fbps9e%2Fbps9e_chapter21_achieve&itemic
X
D21 Chapter 21 Learning Curve: Comp X
An experiment was conducted to see if elderly patients had more trouble keeping their balance when loud,
unpredictable noises were made compared to younger patients who were also exposed to the noises.
Researchers compared the amount of forward and backward sway for the two groups. The researchers
conducted the experiment and obtained data summarized in the following table:
XSE
Elderly Young
26.33 18.13
9.77
4.09
9
18
The standardized test statistic is t =
equation? Answer to two decimal places.
Your answer:
2.30
E
Need help on this question?
Read the ebook page on this topic
(no penalty)
CO
26.33-18.13
B2
9.772+ B²
18
O Search
Get a hint
(fewer points)
L
2.30. What belongs in place of the letter B in the
G
Show answer
(no points)
DELL
Challenge this Question
prese
X
inseri
arrow_forward
Search the web...
of colleg D Facts & Figures - Hig D What are the negativ
Why Instagram Is the
Why Kids Are Using
D Historical Inaccuracie
O Blog Post 2: TH
MAssessment Services - Google Chrome
A assessment.casa.uh.edu/Assessment/Root/Pages/TestTaker/Quiz.aspx?id%3D7D226DEB-3DC7-4E85-ASFE-833369567BAS
) O None of the above
Question 10
In the following diagram, AMCP AMTC, which of the following statements are true? (The diagram may not be drawn to scale.)
M
T.
МP
a) O
PC
MC
%3D
MT
MC
MT
MP
PC
MT
b)
MC
СТ
MC
MP
PC
MC
MC
СТ
MT
MP
CT
MC
d) O
MC
PC
MT
MC
CT
MC
e) O
МP
PC
MT
f) O None of the above
re to search
arrow_forward
1- Online State- X
https://www.usatestprep.com/modules/questions/qq.php?testid313088&assignment_id%3D42092601&stran.. Q☆
1
Submit
In baseball, the pitcher's mound is 60.5 feet from home plate. If the fastest pitch ever recorded in Major League Baseball was 105.1
miles per hour, how many seconds did it take for the ball to travel from the pitcher's mound to home plate? Round the answer to the
nearest tenth.
A)
0.4 seconds
3)
0.8seconds
1.2seconds
16seconds
Cuantres
国
arrow_forward
In west Texas, water is extremely important. The fllowing data represent pH levels in ground water fr a random smple of 102 west Texas wells. A pH
and a pH above 7 is alkaline. Scanning the data, you can see that water in this region tends to be hard (alkaline). Too high a pH means the water is unus
expensive treatment to make it usable.+ These data are also available for download at the Companion Sites for this text. For convenience, the data are p
increasing order.
x: pH of Ground Water in 102 West Texas Wells
7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.1 7.1 7.1 7.1
7.1 7.1 7.1 |7.1 7.1 |7.1 7.2 | 7.2 7.2 | 7.2 |7.2 7.2
7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3
arrow_forward
aiz Link for Asynchronous is o
- Slide Deck for Week March 15
M Agile Mind - My Courses
Login - Powered by Skyward
a rini.agilemind.com/LMS/Imswrapper/LMS.html#/C/course algebra_intensified/Intensified%20Algebra%201/g/b8edfd85-8500-11eb-9958-0cc47a6976fc/x/c/T/topic 03x
>
E Unit 6 Quiz 1
x
K1O0 3 (3 pages)
Jessica wants to solve the equation 2x + 3 = 17 using tables. Her plan is to create a table for the equationy= 2x +3 and a table for y = 17. Complete the tables and state the
solution to the equation.
y= 2x +3
y= 17
5
8.
The solution to the equation is x=
Submit Answer
%23
$4
7
8.
9.
4.
5
e
arrow_forward
TN Chrome - TestNav
i testnavclient.psonsvc.net/#/question/4b2e6ef2-b6a4-469b-bb85-8b6c7703ef02/04a77ff6-9bcc-43ed-861b-5507f14ff96f
Review -
A Bookmark
Stewart, Jason &
Unit 6 Geometry NC Math 3 / 23 of 24
II Pause
O Help -
A plane intersects the prism shown below. The plane forms a cross section.
A Chrome OS · now a
Screenshot taken
What is the shape of the cross section formed by the plane?
Show in folder
O A. cube
The soere md be teseed y lane A The pane fom eton
B. rectangle
Wheheshpe e
C. square
D. triangle
COPY TO CLIPBOARD
O v O 3:56
arrow_forward
AMPA X
+.
OMETRYCP.MS.AMPARO94/_layouts/15/Doc.aspx?sourcedoc%={cf5f1c7b-680c-4e0a-a691-ada5a1d2...
Cortes, Bry
L Immersive Reader
Edi
ebook
S1.P3.GEOMETRY CP.MS.AMPARO Notebook
A This page is locked and can't be edited at this time.
Superman and Captain America are out to "prove" who the best superhero is by facing off in a proof-writing
contest. Here are their entries in the contest: (GCO.7)
Given ST = WV and ST I Wy
Prove: ASUT AWUV
Superman's Proof
Captain America's Proof
Reasons
Reasons
.Given
2. Gwen
3. AH. int.c's
4.LSUTECWN 4 Vertical 's
5.ASKTEAW S. AAS
Štatements
1. ST/WV
2. ST WV
3
arrow_forward
McGraw Hill Campus
X A ALEKS - Maia Fletcher - Learn X b Answered: A marble is selected X +
https://www-awu.aleks.com/alekscgi/x/Isl.exe/10_u-IgNslkr7j8P3jH-IQirVmXK7o_zpyaAMkjWKJh-pmWc8lyVwdR5XMFFoeXLF9QG-XDIEVIQCH
Students Home SL MAT 308 COURSE
COUNTING AND PROBABILITY
=
0/5
Determining outcomes for unions, intersections, and...
A marble is selected from a bag containing eight marbles numbered 1 to 8.
The number on the marble selected will be recorded as the outcome.
Consider the following events.
Event A: The marble selected has a number from 2 to 5.
Event B: The marble selected has an odd number.
Give the outcomes for each of the following events.
If there is more than one element in the set, separate them with commas.
(a) Event "A and B":
(b) Event "A or B": {0
(c) The complement of the event 4: {}
Explanation
Check
Restore Session
C
Getting Started
New Tab
0,0,...
X
Ś ?
Maia V
Español
220
A
81
Aa
1
© 2022 McGraw Hill LLC. All Rights Reserved. Terms of Use | Privacy Center |…
arrow_forward
Please answer the question below in the photo
arrow_forward
If 3% of the thermometers are rejected because they have readings that are too high and another 3% are rejected because they have readings that are too low, find the two readings that are cutoff values separating the rejected thermometers from others.
arrow_forward
Image attached with question
arrow_forward
number 4
arrow_forward
II
so MyPath - Home
LTI Launch
P Do Homework - 1.1 Numbers, X
+
A mathxl.com/Student/PlayerHomework.aspx?homeworkld3615773774&questionld%3D2&flushed%=f
MAT 150/100: College Algebra (4216_10PZ)
Homework: 1.1 Numbers, Data, and Problem
Solving
Question 2, 1.
>
Classify the number as one or more of the following: natural number, integer, rational number, or real number.
7.9 (Average number of gallons of gasoline a driver uses each day to drive a car)
Of which of the following sets is 7.9 a member? Select all that apply.
rational
real
natural
integer
Help me solve this
Textbook
Get more help -
arrow_forward
G Gmail
Bb Pearson's MyLab & Mastering x
Do Homework - L05 Homewor x
AG 2021-2022 Aggie Gentz Book x
Award History
+
A mathxl.com/Student/PlayerHomework.aspx?homeworkld=591061310&questionld=17&flushed=false&cld=6387569&back=https://www.mathxl.com/.
I Apps
Is Mesh Contrast Sh..
s Frill Neck Semi Sh..
S Sheer Mesh Long..
C Kinky Curly Wefte.
R dress
O money in marriage
A Other Bookmarks
Math132-003 (Calculus II - 2021S) Online - Clemence
Makala Langley & | 02/18/21 2:50 PM
Homework: L05 Homework: Trig Substitution
Save
Score: 0 of 1 pt
25 of 27 (23 complete) v
HW Score: 79.63%, 21.5 of 27 pts
8.4.68-Setup & Solve
Question Help ▼
Evaluate the following integral.
dx
V(x - 1)(7 - x)
Rewrite the radicand by completing the square and simplifying.
-S
dx
dx
V(x- 1)(7- x)
Enter your answer in the answer box and then click Check Answer.
parts
remainina
Check Answer
Clear All
javascript:doExercise(25);
arrow_forward
afari
File Edit
Citation list 3/11/2023...
Z=
View History Bookmarks Window Hellp
where z =
A https://www.asm.org...
https://www.michigan...
mth-webwork.se.cmich.edu
Account | Central Mic...
3
x³x3 = x²
3
(x²³ ) ³ = x^²
arrow_forward
com/static/nb/ui/evo/index.html?deploymentld%3D57211919418147002668187168&elSBN=9781337114264&id%3D900392331&snapshotld%3D19233498
GE MINDTAP
Q Search this course
-ST 260
Save
Submit Assignment for Grading
ons
Exercise 08.46 Algorithmic
« Question 10 of 10
Check My Work (4 remaining)
eBook
The 92 million Americans of age 50 and over control 50 percent of all discretionary income. AARP estimates that the average annual expenditure on restaurants and carryout
food was $1,876 for individuals in this age group. Suppose this estimate is based on a sample of 80 persons and that the sample standard deviation is $550. Round your
answers to the nearest whole numbers.
a. At 99% confidence, what is the margin of error?
b. What is the 99% confidence interval for the population mean amount spent on restaurants and carryout food?
C. What is your estimate of the total amount spent by Americans of age 50 and over on restaurants and carryout food?
million
d. If the amount spent on restaurants and…
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Holt Mcdougal Larson Pre-algebra: Student Edition...
Algebra
ISBN:9780547587776
Author:HOLT MCDOUGAL
Publisher:HOLT MCDOUGAL
Related Questions
- M ui/v2/assessment-player/index.html?launchld=3cb6995a-a464-4ce8-9952-7c527abd86ce#/question/2 -/1 E Question 3 of 14 View Policies Current Attempt in Progress A company has cost and revenue functions, in dollars, given by C(q) = 6000 + 8g and R(g) = 12g. (a) Find the cost and revenue if the company produces 500 units. Does the company make a profit? What about 5000 units? Enter the exact answers without comma separation of digits. The cost of producing 500 units is $ i The revenue if the company produces 500 units is $ i Thus, the company v a profit. The cost of producing 5000 units is $ The revenue if the company produces 5000 units is $i Thus, the company v a profit. eTextbook and Media (b) Find the break-even point. Enter the exact answer. The break-even point is i units. eTextbook and Media Which of tbe fellowina illust break even point aranbically? ssion_..docx 2 Discussion_-..docx - Discussion_...docx MacBook Proarrow_forwardLearn + A blackboard.sanjac.edu/webapps/blackboard/content/contentWrapper.jsp?course_id%3 3201092_1&displayName=My Gmail O YouTube Maps a News O Translate SPRING 2021 My San Jac Courses Student S lyopenMath (MOM) Question 33 A bag of M&M's has 5 red, 6 green, 4 blue, and 2 yellow M&M's. Suppose you randomly select two M&M's from the bag one at a time without replacing the first M&M. Let A = first M&M is red and B = second M&M is yellow. Find the following probabilities. (Write your answers as fractions.) a) P(A) = b) P(B | A) = C) P(A and B) = Question Help: D Post to forum Submit Question DELL F8 F4 F1 F2 F3 & %23 %24 8. 6. 4 1 W #arrow_forwardP Do Homework-Section 14 Hom x + > C O A mathxl.com/Student/PlayerHomework.aspx?homeworkld=606462636&questionld=1&flushed false&cld=6635326&back=https://www.mathxl.com/Student/DoAssignments.as O Watch Wrestling -. G Google Microsoft account . Tri-County Cineplex. V Make Your Own Ga.e https//ahometown. Doxy.me - Dr. Cam. f Jacob Grant Hamilt. O Hamilton Univers Fall 2021 Algebra: Polynomials (MAT-112A-012, MAT-112A-CR1, MAT-112A-MN1) HW Sc E Homework: Section 1.4 Homework Question 1, 1.4.1 Score: Write the equation of the line with slope 4 and y-intercept The equation of the line is (Simplify your answer. Type an equation using x and y as the variables. Use integers or fractions for any numbers in the equation. Enter your answer in the answer box and then click Check Answer. Help Me Solve This View an Example Get More Help - P Type here to search A * S - O F5 F7 F10 F11 F12 F1 F3 F4 6Backspace 41 RI T U Tab D H. J. K 1Enter Caps Lockarrow_forward
- P Chrome - Do Homework - HW #12 = 8.4, 9.1, 9.2 A mathxl.com/Student/PlayerHomework.aspx?homeworkld3610059707&questionld=5&flushed%-true&cld%3D6700191¢erw Math for Aviation I E Homework: HW #12 = 8.4, 9.1, 9.2 Question 6, 8. For an arc length s, area of sector A, and central angle 0 of a circle of radius r, find the indicated quantity for the given values. A= 15.3 m2, r=4.02 m, s = ? S= m (Type an integer or decimal rounded to two decimal places as needed.) Help me solve this View an example Get more help - DELLarrow_forwardQuiz for Chapter 21 LearningCur X + /learningcurve.macmillanlearning.com/?user_id=3e6bfbb2-26e7-11ed-9c99-653e998b9738&file=stats%2Fbps9e%2Fbps9e_chapter21_achieve&itemic X D21 Chapter 21 Learning Curve: Comp X An experiment was conducted to see if elderly patients had more trouble keeping their balance when loud, unpredictable noises were made compared to younger patients who were also exposed to the noises. Researchers compared the amount of forward and backward sway for the two groups. The researchers conducted the experiment and obtained data summarized in the following table: XSE Elderly Young 26.33 18.13 9.77 4.09 9 18 The standardized test statistic is t = equation? Answer to two decimal places. Your answer: 2.30 E Need help on this question? Read the ebook page on this topic (no penalty) CO 26.33-18.13 B2 9.772+ B² 18 O Search Get a hint (fewer points) L 2.30. What belongs in place of the letter B in the G Show answer (no points) DELL Challenge this Question prese X inseriarrow_forwardSearch the web... of colleg D Facts & Figures - Hig D What are the negativ Why Instagram Is the Why Kids Are Using D Historical Inaccuracie O Blog Post 2: TH MAssessment Services - Google Chrome A assessment.casa.uh.edu/Assessment/Root/Pages/TestTaker/Quiz.aspx?id%3D7D226DEB-3DC7-4E85-ASFE-833369567BAS ) O None of the above Question 10 In the following diagram, AMCP AMTC, which of the following statements are true? (The diagram may not be drawn to scale.) M T. МP a) O PC MC %3D MT MC MT MP PC MT b) MC СТ MC MP PC MC MC СТ MT MP CT MC d) O MC PC MT MC CT MC e) O МP PC MT f) O None of the above re to searcharrow_forward
- 1- Online State- X https://www.usatestprep.com/modules/questions/qq.php?testid313088&assignment_id%3D42092601&stran.. Q☆ 1 Submit In baseball, the pitcher's mound is 60.5 feet from home plate. If the fastest pitch ever recorded in Major League Baseball was 105.1 miles per hour, how many seconds did it take for the ball to travel from the pitcher's mound to home plate? Round the answer to the nearest tenth. A) 0.4 seconds 3) 0.8seconds 1.2seconds 16seconds Cuantres 国arrow_forwardIn west Texas, water is extremely important. The fllowing data represent pH levels in ground water fr a random smple of 102 west Texas wells. A pH and a pH above 7 is alkaline. Scanning the data, you can see that water in this region tends to be hard (alkaline). Too high a pH means the water is unus expensive treatment to make it usable.+ These data are also available for download at the Companion Sites for this text. For convenience, the data are p increasing order. x: pH of Ground Water in 102 West Texas Wells 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.1 7.1 7.1 7.1 7.1 7.1 7.1 |7.1 7.1 |7.1 7.2 | 7.2 7.2 | 7.2 |7.2 7.2 7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3arrow_forwardaiz Link for Asynchronous is o - Slide Deck for Week March 15 M Agile Mind - My Courses Login - Powered by Skyward a rini.agilemind.com/LMS/Imswrapper/LMS.html#/C/course algebra_intensified/Intensified%20Algebra%201/g/b8edfd85-8500-11eb-9958-0cc47a6976fc/x/c/T/topic 03x > E Unit 6 Quiz 1 x K1O0 3 (3 pages) Jessica wants to solve the equation 2x + 3 = 17 using tables. Her plan is to create a table for the equationy= 2x +3 and a table for y = 17. Complete the tables and state the solution to the equation. y= 2x +3 y= 17 5 8. The solution to the equation is x= Submit Answer %23 $4 7 8. 9. 4. 5 earrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Holt Mcdougal Larson Pre-algebra: Student Edition...AlgebraISBN:9780547587776Author:HOLT MCDOUGALPublisher:HOLT MCDOUGAL
Holt Mcdougal Larson Pre-algebra: Student Edition...
Algebra
ISBN:9780547587776
Author:HOLT MCDOUGAL
Publisher:HOLT MCDOUGAL