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
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
chriv11@morga x
McGraw HillCampus ALEKS X A ALEKS-Christian Rivers - L X
=
www-awu.aleks.com/alekscgi/x/lsl.exe/1o_u-IgNsIkasNW8D8A9PVVROTV9e4L4jq9c-vwln2qVwkjkNo-PgOw95sEg30SZtco4mr9ipmXuthIMTreooedXu9rGwCm27sAEjohBKh55Rqw
O EXPONENTS AND POLYNOMIALS
Converting between scientific notation and standard form in a...
(a) meters
(b) kilometers
Explanation
Type here to search
Answer the following.
(a) An astronomer's infrared telescope is able to detect radiation with a wavelength of 4.39 x 10 meters. Write this number in standard notatic
(b) The diameter of Mars at its equator is approximately 6790 kilometers. Write this number in scientific notation.
3
E
Check
R
Oi
MindTap - Cengage Learnin x
5
1
X
WebSIS Landing | Morgan: X
5
Banner
W
0/3
Terms of Use | Privacy
65°F Rain
2022 McGraw Hill LLC. All Rights Reserved. Terms of Use
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
Please share an excel screen on how to input the data for #2 only.
Thank you
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
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
TN Chrome - TestNav
i testnavclient.psonsvc.net/#/question/4b2e6ef2-b6a4-469b-bb85-8b6c7703ef02/04a77ff6-9bcc-43ed-861b-5507f14ff96f
Review -
ABookmark
Stewart, Jason a
Unit 6 Geometry NC Math 3 / 8 of 24
II Pause
O Help -
Given: In Parallelogram ABCD,
• mLA = (7y + 13)°
mZB = (106 – 2x)°
• mLC = (10y - 32)°
• mLD = (3x – 4)°
Exhibits
A
B
(7y + 13)°
(106 – 2x)
(3x - 4)°
(10у - 32)%
D
Not drawn to scale.
What are the values of x and y?
Use words, numbers, and/or equations to explain your work.
Ov Ó 4:20
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
ze.com/assignments/viewer/classes/6117ddc0624e3e4515368d9c/assign.
ealism - The M.
Genetic drift - Wikip.
AAlgebra Foundatio..
Ima
pol: Practice and Problem-Solving Copy 2
Find the area of the rectangle.
(6x+7) yards
(6x-7) yards
The area of the rectangle is
7(Simplify your answer.)
Help me solve this
View an example
Get more help-
Review progress
arrow_forward
A pediatrician records the age x (in yr) and average height y (in inches) for girls between the ages of 2 and 10.
Height of Girls vs. Age
50-
40-
(4,38)
30-
10-
0
Age(yr)
Part: 0 / 4
Part 1 of 4
(a) Use the points (4, 38) and (8, 50) to write a linear model for these data.
X
y =
Skip Part
Check
Height (in.)
(8,50)
Ⓒ2022 McGraw Hill LLC. All Rights Reserve
A
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
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
the link to the data is given below. please help asap i will upvote!!
https://drive.google.com/file/d/1Ov-VfoR_pU25sj1Kg0LLxTHu6lxv_Wsc/view?usp=sharing
arrow_forward
i macmillanhighered.com/launchpad/ips9e/15932912#/launchpad/item/PX_MULTIPART_LESSONS/de3d664e83174ac98724d7eOfba050b5?mode%=startQuiz&re..
E Apps
a Amazon.com - Onli.
2 Priceline.com
O TripAdvisor
O watch
O Imported From IE
Various Artists - We.
9 Episode 09: Home F.
Doctor Shortage: C. X XFINITY On Campus
A Done
Homework 2.2-2.4
26. Colorectal cancer (CRC) is the third most commonly diagnosed cancer among Americans (with nearly 147,000 new cases), and the third leading cause of cancer death (with over 50,000 deaths annually). Research was
done to determine whether there is a link between obesity and CRC mortality rates among African Americans in the United States by county. Below are the results of a least-squares regression analysis from the
software StatCrunch.
Simple linear regression results:
Dependent Variable: Mortality.rate
Independent Variable: Obesity.rate
Mortality.rate = 13,458199 - 0.21749489 Obesity.rate
Sample size: 3098
R (correlation coefficient) = -0.0067
R-sq =…
arrow_forward
Can someone help me with this question?
arrow_forward
the link to the data is given below. please help asap i will upvote!!
https://drive.google.com/file/d/1UQC9LitRanJ_xdQIiLCRFQ7FJ4SbtzTe/view?usp=sharing
arrow_forward
f Messenger | Facebook
Content
M2OL2 - Blackboard Learn
wP NWP Assessment Player UI Appli X
A education.wiley.com/was/ui/v2/assessment-player/index.html?launchld=393e4370-a779-41b5-8dbb-e250583f0ac1#/question/7
Q E * Tp
19
E M2OL2
Question
Math Symbolic and Graphing
Not started
Question 8 of 17
-/5
Question 4
- /5
View Policies
Multipart
Not started
Current Attempt in Progress
Question 5
-/5
Math Symbolic and Graphing
Not started
Find the general solution of the differential equation
y" – 4y' – 21y = -47t + 42t².
Question 6
-/5
Multiple Choice
Not started
NOTE: Use t as the independent variable.
Use cz and cz as arbitrary constants.
Question 7
- /5
Math Symbolic and Graphing
Not started
y(t) =
Viewing Question 8
-/5
Math Symbolic and Graphing
Not started
Question 9
-/5
Math Symbolic and Graphing
Not started
Question 10
-/5
Math Symbolic and Graphing
Not started
Question 11
-/5
Math Symbolic and Graphing
Not started
Attempts: 0 of 5 used Submit Answer
Save for Later
Using multiple…
arrow_forward
Please share an excel screen on how to input and calculate the data for #1 only.
Thank you
arrow_forward
hospital du
arrow_forward
Can someone answer this question? (This is one question)
arrow_forward
Home - alamo.edu
M Gmail ▸ YouTube
X
www-awu.aleks.com/alekscgi/x/lsl.exe/10_u-IgNslkr7j8P3jH-liJQkH_AOrHhOj2i-
0
Maps
O DESCRIPTIVE STATISTICS
Interpreting a tally table
tsetup-x64.4.2.4.exe
McGraw-Hill Campus - ALEKS Hc x
Isabel asked her classmates to choose their favorite sport.
She ended up with the tally table below.
How many students chose hockey?
Hockey
Football
Explanation
Text Summarizer ...
Sport
Soccer
Basketball ||
Baseball |HT||||
LAT LAT
LIT
Type here to search
Tally
LIT LIT ||
Check
X
A ALEKS-Tiba Albadr
Do Homework - Ho...
O
Ï
Post-Gradua
H
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
- 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_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_forwardchriv11@morga x McGraw HillCampus ALEKS X A ALEKS-Christian Rivers - L X = www-awu.aleks.com/alekscgi/x/lsl.exe/1o_u-IgNsIkasNW8D8A9PVVROTV9e4L4jq9c-vwln2qVwkjkNo-PgOw95sEg30SZtco4mr9ipmXuthIMTreooedXu9rGwCm27sAEjohBKh55Rqw O EXPONENTS AND POLYNOMIALS Converting between scientific notation and standard form in a... (a) meters (b) kilometers Explanation Type here to search Answer the following. (a) An astronomer's infrared telescope is able to detect radiation with a wavelength of 4.39 x 10 meters. Write this number in standard notatic (b) The diameter of Mars at its equator is approximately 6790 kilometers. Write this number in scientific notation. 3 E Check R Oi MindTap - Cengage Learnin x 5 1 X WebSIS Landing | Morgan: X 5 Banner W 0/3 Terms of Use | Privacy 65°F Rain 2022 McGraw Hill LLC. All Rights Reserved. Terms of Usearrow_forward
- Please share an excel screen on how to input the data for #2 only. Thank youarrow_forwardP 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_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_forwardTN Chrome - TestNav i testnavclient.psonsvc.net/#/question/4b2e6ef2-b6a4-469b-bb85-8b6c7703ef02/04a77ff6-9bcc-43ed-861b-5507f14ff96f Review - ABookmark Stewart, Jason a Unit 6 Geometry NC Math 3 / 8 of 24 II Pause O Help - Given: In Parallelogram ABCD, • mLA = (7y + 13)° mZB = (106 – 2x)° • mLC = (10y - 32)° • mLD = (3x – 4)° Exhibits A B (7y + 13)° (106 – 2x) (3x - 4)° (10у - 32)% D Not drawn to scale. What are the values of x and y? Use words, numbers, and/or equations to explain your work. Ov Ó 4:20arrow_forwardTN 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:56arrow_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