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
number 8.
arrow_forward
please assist
arrow_forward
The percentage of students i'm coming up with is saying incorrect, please assist
arrow_forward
ALEKS - Ryan Cardona - Learn
* Dashboard
+
8 https://www-awu.aleks.com/alekscgi/x/Isl.exe/1o_u-lgNslkasNW8D8A9PVVfWTn8uF4bDZyGNt3JMkrWrxs-imTqtl37CXmxgYAafBJWO6N9...
..
O EQUATIONS AND INEQUALITIES
Ryan v
Solving a word problem using a quadratic equation with irration..
Español
A ball is thrown from a height of 43 meters with an initial downward velocity of 4 m/s, The ball's height h (in meters) after i seconds is given by the following.
h= 43 – 41– 5r
How long after the ball is thrown does it hit the ground?
Round your answer(s) to the nearest hundredth.
(If there is more than one answer, use the "or" button.)
I| seconds
Dor O
ground
Explanation
Check
O 2021 McGraw Hill LLC. All Rights Reserved. Terms of Use I Privacy Center
| Accessibility
3:46 PM
P Type here to search
IA
93°F
8/31/2021
ASUS ZenBook
F5
F6
F8
F9
F10
A F11
F2
F3
F12
Delete
F4
IA
Prt Sc
回回国回回
II
arrow_forward
Please help!
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
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
The table below displays the adult literacy rate in Bolivia for several different years. The adult literacy rate is the percentage of people ages 15 and above who can both read and write with understanding a short simple statement about their everyday life.
Data downloaded on 2/19/2020 from https://ourworldindata.org/grapher/literacy-rate-adults?tab=chart&time=1973..2016.
Year 1976 2001 2012
Literacy Rate 63.2% 86.7% 94.5%
When answering the questions below, round to four decimal places in your intermediate computations.
Use interpolation or extrapolation (whichever is appropriate) to predict the literacy rate in Bolivia in 1992. Round your answer to one decimal place. You only get one submission for the unit.
---Select---
Use interpolation or extrapolation (whichever is appropriate) to predict the literacy rate in Bolivia in 2050. Round your answer to one decimal place. You only get one submission for the unit.
---Select---
Is your 2050 prediction realistic? You must…
arrow_forward
please help answer these questions I made a pdf because these are practice questions.
arrow_forward
alculate d for each patient by subtracting the number of hours of sleep with the drug from the number without the drug.
arrow_forward
stNav
ent.psonsvc.net/#/question/cd3e0f8a-41b1-491c-84f8-3b8a6a26dff8/fcbC
Review
Bookmark
ometry Unit 5: Proportions and Sìmilarity 2020-2021 / 9 of 19
Find the value of x
12
8
x+2
Enter your answer by clicking the bubbles.
2.
arrow_forward
Please solve homework in the following format like in two columns:
•statment | •justifications
i have attached solved format
Note: My previous homework was cancelled due to not following format.
i want to give you thumbs up. So please follow attached format
arrow_forward
nt Lecture Recordings for Unit 4- 20020.2...
https://learn-us-east-1-prod-fleet01-xythos.s3.u...
video.snead.edu/BUS272/BUS_272_4-11-2018_..
https://learn-us-east-1-prod-fleet01-xythc
Before the Christmas shopping rush began, a department store had noted that the percentage of
customers who use a major credit card, the percentage who use the store's credit card, the percentage
who pay by personal check, and the percentage who pay with cash are all the same, 25% for each.
During the Christmas season, in a sample of 200 shoppers, 47 used a major credit card, 40 used the
store's credit card, 49 paid with a personal check, and 64 paid with cash. At a 95% confidence level,
test to see if the methods of payment have changed during the Christmas shopping rush.
4.
arrow_forward
Could you please take a screenshot or list the procedure when you do all the graphical parts by using Minitab. (Please do only the last one(d)
The monthly rainfall (in mm) in a small country for last 41 years is given in the data set Rain_Fall. Copy the given data to a MINITAB worksheet. Answer the following. (Copy and paste the MINITAB output. Resize and wrap to fit into the given area) .
a. Draw a histogram for the variable rainfall. (Copy and Paste the MINITAB graph. Resize and remove excess white space)
b. Draw box plots for the rainfall for each month. (Copy and Paste the MINITAB graph. Resize and remove excess white space. There should be 12 box-plots, 1 for each month.)
c. Find the mean and median, variance, and standard deviation of the rainfall by each month. (Copy and Paste the MINITAB output)
d. Find the total rainfall by each month. (Copy and Paste the MINITAB output)
Rain_fall
Month
6.7
1
8.9
1
6.7
1
7.3
1
4.9
1
3.2
1
4.9
1
9.2
1
7.6
1
2.8…
arrow_forward
please help answer these questions I made a pdf because these are practice questions.
arrow_forward
Please show step by step.
Subpart Viii and Viiii please
arrow_forward
Only need (A) needs an answer
arrow_forward
answer is b
arrow_forward
An insurance company hires an actuary to determine whether the number of hours of safety drivingclasses can be used to predict the number of driving accidents for each driver. Identify theexplanatory variable, if any.
arrow_forward
www-awu.aleks.com/alekscgi/x/lIsl.exe/1o_u-IgNslkasNW8D8A9PVWRD7z2fbLpYbnRLF8ocURSKhJQO_itZs8shVHhxm-ZaorZoFLlqsCwNo6vUwt0XTWfjJIVW3mc
O GRAPHS AND FUNCTIONS
Writing an equation for a function after a vertical and horizontal...
The graph of f (in blue) is translated a whole number of units horizontally and vertically to obtain the graph ofg (in red).
The function f is defined by f(x) =-x.
Write down the expression for g (x).
3.
2.
2.
-3-
4-
5-
미미
g (x) = 0
arrow_forward
Only need help with 1 & 2. Must be calculated in Excel.
Thanks
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_forwardnumber 8.arrow_forward
- please assistarrow_forwardThe percentage of students i'm coming up with is saying incorrect, please assistarrow_forwardALEKS - Ryan Cardona - Learn * Dashboard + 8 https://www-awu.aleks.com/alekscgi/x/Isl.exe/1o_u-lgNslkasNW8D8A9PVVfWTn8uF4bDZyGNt3JMkrWrxs-imTqtl37CXmxgYAafBJWO6N9... .. O EQUATIONS AND INEQUALITIES Ryan v Solving a word problem using a quadratic equation with irration.. Español A ball is thrown from a height of 43 meters with an initial downward velocity of 4 m/s, The ball's height h (in meters) after i seconds is given by the following. h= 43 – 41– 5r How long after the ball is thrown does it hit the ground? Round your answer(s) to the nearest hundredth. (If there is more than one answer, use the "or" button.) I| seconds Dor O ground Explanation Check O 2021 McGraw Hill LLC. All Rights Reserved. Terms of Use I Privacy Center | Accessibility 3:46 PM P Type here to search IA 93°F 8/31/2021 ASUS ZenBook F5 F6 F8 F9 F10 A F11 F2 F3 F12 Delete F4 IA Prt Sc 回回国回回 IIarrow_forward
- Please help!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
- 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_forwardImage attached with questionarrow_forwardThe table below displays the adult literacy rate in Bolivia for several different years. The adult literacy rate is the percentage of people ages 15 and above who can both read and write with understanding a short simple statement about their everyday life. Data downloaded on 2/19/2020 from https://ourworldindata.org/grapher/literacy-rate-adults?tab=chart&time=1973..2016. Year 1976 2001 2012 Literacy Rate 63.2% 86.7% 94.5% When answering the questions below, round to four decimal places in your intermediate computations. Use interpolation or extrapolation (whichever is appropriate) to predict the literacy rate in Bolivia in 1992. Round your answer to one decimal place. You only get one submission for the unit. ---Select--- Use interpolation or extrapolation (whichever is appropriate) to predict the literacy rate in Bolivia in 2050. Round your answer to one decimal place. You only get one submission for the unit. ---Select--- Is your 2050 prediction realistic? You must…arrow_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