mparvez2023-DataScience Assignment 3
.pdf
keyboard_arrow_up
School
Florida Atlantic University *
*We aren’t endorsed by this school
Course
CAP 4613
Subject
Statistics
Date
Feb 20, 2024
Type
Pages
5
Uploaded by BailiffHeatGrouse38
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
1/5
year
month
day
dep_time
dep_delay
arr_time
arr_delay
carrier
tailnum
flight
origin
des
0
2013
6
30
940
15
1216
-4
VX
N626VA
407
JFK
LA
1
2013
5
7
1657
-3
2104
10
DL
N3760C
329
JFK
SJ
2
2013
12
8
859
-1
1238
11
DL
N712TW
422
JFK
LA
3
2013
5
14
1841
-4
2122
-34
DL
N914DL
2391
JFK
TP
4
2013
7
21
1102
-3
1230
-8
9E
N823AY
3652
LGA
OR
...
...
...
...
...
...
...
...
...
...
...
...
32730
2013
10
8
752
-8
921
-28
9E
N8505Q
3611
JFK
P
32731
2013
7
7
812
-3
1043
8
DL
N6713Y
1429
JFK
LA
32732
2013
9
3
1057
-1
1319
-19
UA
N77871
1545
EWR
IA
32733
2013
10
15
844
56
1045
60
B6
N258JB
1273
JFK
CH
32734
2013
3
28
1813
-3
1942
-23
UA
N36272
1053
EWR
CL
32735 rows × 16 columns
import pandas as pd
# Specify the file path
#file_path = C:\Users\Mohammed Parvez\Desktop\nycflights.csv'
# Read the data file into a DataFrame
#df = pd.read_csv(file_path)
# Display the DataFrame
df
Q1)Read nyc±ights.csv ²le using pandas and name it df. Create a new data frame by selecting dep_time, dep_delay, arr_time, arr_delay, and
tailnum, and name it newyork_±ight_new—display with the ²rst ²ve entries.
dep_time
dep_delay
arr_time
arr_delay
tailnum
0
940
15
1216
-4
N626VA
1
1657
-3
2104
10
N3760C
2
859
-1
1238
11
N712TW
3
1841
-4
2122
-34
N914DL
4
1102
-3
1230
-8
N823AY
import pandas as pd
# Read the CSV file and create the DataFrame
#df = pd.read_csv(C:\Users\Mohammed Parvez\Desktop\\nycflights.csv')
# Create a new DataFrame with selected columns
newyork_flight_new = df[['dep_time', 'dep_delay', 'arr_time', 'arr_delay', 'tailnum']]
# Display the first five entries of the new DataFrame
newyork_flight_new.head()
Q2: Filter newyork_±ight_new by selecting rows with a departure time greater than 2000 and naming it dep_time_2000. How many rows were
deleted?
# Filter the DataFrame by selecting rows with departure time greater than 2000
dep_time_2000 = newyork_flight_new[newyork_flight_new['dep_time'] > 2000]
# Count the number of rows deleted (not meeting the condition)
rows_deleted = len(newyork_flight_new) - len(dep_time_2000)
# Display the number of rows deleted
print("Number of rows deleted:", rows_deleted)
Number of rows deleted: 29166
Q3) Do we have any missing values in dep_delay? If yes, replace the missing values with the median of dep_delay
import pandas as pd
import numpy as np
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
2/5
# Check for missing values in 'dep_delay'
missing_values = newyork_flight_new['dep_delay'].isnull().sum()
if missing_values > 0:
# Calculate the median of 'dep_delay'
median_dep_delay = newyork_flight_new['dep_delay'].median()
# Replace missing values with the median
newyork_flight_new['dep_delay'].fillna(median_dep_delay, inplace=True)
print("Missing values in 'dep_delay' column were replaced with the median.")
else:
print("No missing values found in 'dep_delay' column.")
No missing values found in 'dep_delay' column.
Q4) Use the query function to ²lter all the rows with airtime greater than 120 minutes and distance greater than 700 km
import pandas as pd
# Read the dataset using pandas
file_path = 'C:\\Users\\Mohammed Parvez\\Desktop\\student-por.csv'
#df = pd.read_csv(file_path, sep=';')
# Filter the rows using the query function
#filtered_data = df.query('airtime > 120 and distance > 700')
# Display the filtered DataFrame
print(filtered_data)
year month day dep_time dep_delay arr_time arr_delay carrier \
0 2013 6 30 940 15 1216 -4 VX 1 2013 5 7 1657 -3 2104 10 DL 2 2013 12 8 859 -1 1238 11 DL 3 2013 5 14 1841 -4 2122 -34 DL 5 2013 1 1 1817 -3 2008 3 AA ... ... ... ... ... ... ... ... ... 32720 2013 4 17 1023 -7 1341 -24 VX 32722 2013 7 9 600 0 822 -8 AA 32726 2013 2 4 1558 -2 1854 4 DL 32731 2013 7 7 812 -3 1043 8 DL 32732 2013 9 3 1057 -1 1319 -19 UA tailnum flight origin dest air_time distance hour minute 0 N626VA 407 JFK LAX 313 2475 9 40 1 N3760C 329 JFK SJU 216 1598 16 57 2 N712TW 422 JFK LAX 376 2475 8 59 3 N914DL 2391 JFK TPA 135 1005 18 41 5 N3AXAA 353 LGA ORD 138 733 18 17 ... ... ... ... ... ... ... ... ... 32720 N842VA 187 EWR SFO 351 2565 10 23 32722 N3ERAA 707 LGA DFW 178 1389 6 0 32726 N3737C 1331 JFK DEN 238 1626 15 58 32731 N6713Y 1429 JFK LAS 286 2248 8 12 32732 N77871 1545 EWR IAH 180 1400 10 57 [17840 rows x 16 columns]
Q5) Create a new data frame by dep_time, dep_delay, arr_time, arr_delay, tail num, and destination using ²lter() and name it df1.
import pandas as pd
# Assuming you already have a DataFrame named 'df'
# Select the desired columns using filter()
df1 = df.filter(['dep_time', 'dep_delay', 'arr_time', 'arr_delay', 'tailnum', 'destination'])
# Display the new DataFrame
print(df1)
dep_time dep_delay arr_time arr_delay tailnum
0 940 15 1216 -4 N626VA
1 1657 -3 2104 10 N3760C
2 859 -1 1238 11 N712TW
3 1841 -4 2122 -34 N914DL
4 1102 -3 1230 -8 N823AY
... ... ... ... ... ...
7/14/23, 7:19 PM
DataScience Assignment 3 - Colaboratory
https://colab.research.google.com/drive/1h0xMUhziGWYy1Du_GL-ABXZNpA7KAi9f?authuser=1#scrollTo=N0bwFTRwsfYA&printMode=true
3/5
32730 752 -8 921 -28 N8505Q
32731 812 -3 1043 8 N6713Y
32732 1057 -1 1319 -19 N77871
32733 844 56 1045 60 N258JB
32734 1813 -3 1942 -23 N36272
[32735 rows x 5 columns]
Q6) Add a new column "total_delay" to df1 using assign(). Total_delay can be calculated by adding dep_delay and arr_delay
# Assuming you already have a DataFrame named 'df1'
# Add a new column "total_delay" using assign()
df1 = df1.assign(total_delay=df1['dep_delay'] + df1['arr_delay'])
# Display the updated DataFrame
print(df1)
dep_time dep_delay arr_time arr_delay tailnum total_delay
0 940 15 1216 -4 N626VA 11
1 1657 -3 2104 10 N3760C 7
2 859 -1 1238 11 N712TW 10
3 1841 -4 2122 -34 N914DL -38
4 1102 -3 1230 -8 N823AY -11
... ... ... ... ... ... ...
32730 752 -8 921 -28 N8505Q -36
32731 812 -3 1043 8 N6713Y 5
32732 1057 -1 1319 -19 N77871 -20
32733 844 56 1045 60 N258JB 116
32734 1813 -3 1942 -23 N36272 -26
[32735 rows x 6 columns]
Q7) Group df according to "months" and ²nd the average air time and maximum distance traveled. Use groupby() and agg() functions.
# Group the DataFrame by "months" and calculate average airtime and maximum distance
#grouped_df = df.groupby('months').agg(avg_airtime=('airtime', 'mean'), max_distance=('distance', 'max'))
# Display the grouped DataFrame
print(grouped_df)
air_time distance
month 1 152.026054 4983
2 149.713911 4983
3 151.598466 4983
4 152.737864 4983
5 147.203474 4983
6 147.172035 4983
7 147.390956 4983
8 146.139583 4983
9 145.423349 4983
10 145.775312 4983
11 158.226857 4983
12 162.330265 4983
import pandas as pd
# Specify the file path
# file_path_1= 'C:data\student-por.csv'
file_path_1= './student-por.csv'
# Read the data file into a DataFrame
df = pd.read_csv(file_path_1)
# Display the DataFrame
df
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
Related Questions
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
O Copy of Algebra I Final Exam - G x
adocs.google.com/presentation/d/1ry04WKcCUYeulWtAru6SI1tYvzw6sP4PualkrbstAg/edit?ts=60747a30#slide-id.gb05bbbec93_26 68
f Algebra I Final Exam
: View Insert Format Slide Arrange Tools Add-ons Help
%23
Last edit was seconds ago
IT
O Present
Background Layout-
Theme
Transition
M 1 I 2 I 3 I 4 I S E 7
..B ...I .. 9. ..E
Standard 2: Line of Best Fit
#1 of 1
# of
# of
A. Write the equation of the line of best fit(from Desmos.com-instructions HERE
Students
students
that like
responded Math
that
B. Using your line of best fit equation, predict the number of students that like
Math if 1000 students responded. SHOW WORK with your equation and round
down to the nearest person.
30
24
41
31
C. If you found that 200 students like Math, how many students responded?
SHOW WORK with your equation and round up to the nearest person!
80
68
100
85
110
94
D. Predict the number of students that like Math if 25,000 students were
surveyed. SHOW WORK with your equation!
150…
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
Module 13 Lecture Materials - MX
WAHomework 9.1 and 9.3-9.6 MAT X
webassign.net/web/Student/Assignment-Responses/submit?pos=3&dep3=23136141.. *
© NP IU
pps
history 1302 book bio MATH 1342, sectio...
psychology k kanopy
ur best submission for each question part is used for your score.
-/3.09 POINTS
ILLOWSKYINTROSTAT1 9.PR.034.
MY NOTES
ASK YOUR TEACHER
The probability of winning the grand prize at a particular carnival game is 0.005. Michele wins the grand prize. Is this
considered a rare or common event? Why?
This is considered a common event because the probability of it occurring is so high.
This is considered a rare event because the probability of it occurring is so high.
This is considered a common event because the probability of it occurring is so low.
This is considered a rare event because the probability of it occurring is so low.
Additional Materials
eBook
Submit Answer
View Previous Question
Question 5 of 11
View Next Question
Home
My Assignments
+Request Extension…
arrow_forward
NM ANOVATION
ACADEMY
Bb
WIX
A X
Pf
Pf
www-awu.aleks.com/alekscgi/x/lsl.exe/1o_u-lgNslkasNW8D8A9PVWRD7z2fbLpYbnRLf8ocURSKhJQO_itZs8shVH-FDXULHKG9X.
O GRAPHS AND FUNCTIONS
Finding values and intervals where the graph of a function is...
Use the graph of the function y=g(x) below to answer the questions.
%3D
(a) Is g(-2) negative?
(0,0) (0,0)
O Yes O No
(b) For which value(s) of x is g(x) = 0?
If there is more than one value, separate them with commas.
[0,0) (0,0) OvO
(c) For which value(s) of x is g(x)<0?
Write your answer using interval notation.
Explanation
Check
72022 McGraw Hill LLC. AI
ASUS
f3
f4
f5
f7
f10
11
III
arrow_forward
Malikinorschool.com/Student/PlayerHomework.aspx?homeworkld=29428062&questionld=2&flushed%-false&cld35
a SDPBC Bookmarks
O Portal
(141) Dashboard |--
E Factoring Notes-G..
6 ef
Review Of Menstrua.
Period 4-Semester 2
Homework: Inscribed Angles
core: 0 of 1 pt
2 of 6 (3 complete)
12.3.7
Find the value of a. The dot represents the center of the circle.
Enter your answer in the answer box and then click Check Answer.
Clear All
All parts showing
DELL
Ce
%23
24
&
3
4
5
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
Please answer the question below in the photo
arrow_forward
https://www.webassign.net/web/Student/Assignment-Responses/submit?dep=30436356&tags-autosave#question3732841_7
ar quick access, place your favorites here on the favorites bar. Manage favorites now
A newspaper article discussing whether Social Security could be cut offered the information shown in the figure below. Use the information in these graphs to answer the question.
The crunch to come...
Social security taxes were
raised to build a surplus...
Money paid into the system has
been greatly exceeding
benefits since 1983.
Scale in billions of dollars.
11 T 1 T
1960 65 *70 75
'80
Collected
But the baby boomers
will break the bank...
By one government projection,
the Social Security system will
be paying out more than it is
taking in by 2015, and
the trust fund will run
out of money by the
year 2036.
Scale in billions
of dollars.
1
T
1995 '00 '05 '10
'10
1
15
Need Help? Read It
1
20
When will the baby boomers break the bank?
Paid out
|
1
'85 '90
1
25
Hi
I
30
$300
250
I
35
200
150
100
50…
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
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
Show all steps thank you
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
Please do question 10 B part. Thanks
arrow_forward
naining Time: 3 hours, 23 minutes, 18 seconds.
✓ Question Completion Status:
Type of Job
000 000
White Collar
Blue Collar
43%
95%
28%
37%
91%
41%
Republican
11%
15%
26%
sessment_id= 415098_1&course_id= 309271_1&new_attempt=1&c...
Political
Democrat
21%
16%
37%
Affiliation
Independent Total
42%
58%
100%
10%
27%
37%
1. Find (Probability of Blue Collar | Democrat) Use two decimal places in
your answer.
Click Save and Submit to save and submit. Click Save All Answers to save all answers.
Save All Answers
0 Guest
arrow_forward
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
Please do question 10 a part. Thanks
arrow_forward
A dolphin is swimming 18 feet below the surface of the ocean There is a coast guard helicopter 75.5 above the surface of the water that is directly above the dolphin what is the distance between the dolphin and the helicopter
arrow_forward
S DAILY x
6 WEEK
O Micros x
S WEEK
O Micros x
O Micros x
S SKILL C x
M Inbox (
J-aa2e128fad3ebd013fc2038e53478cfbbc97a28d/MyFiles/Downloads/Week_One_Distance_Midpoint_Segment.
ment_Addition.pdf
2 / 12
150%
+
29 inches
A
В
C
9.
AB =
40 inches
arrow_forward
tNav
nt.psonsvc.net/#/question/31d02101-e71d-4cc1-899a-3523d651f638/02e55b76-835e-437f-992d-9dca3c1659bf
Review
A Bookmark
Elliott, Isiah
II Pause
O Help -
2020-2021 / 1 of 20
Christina drew a scale model of an Olympic-size swimming pool using a scale in which 3 centimeters represents 10 meters. If the length of
the pool in her drawing is 15 centimeters, what is the length of the actual pool?
O A. 50 m
о в. 30 m
о С. 4.5 пm
O D. 150 m
arrow_forward
Corning Gorilla Glass
C021 Module2 Test i-NTN
O Assessment
O Meet - gtt-gkzd-zes
intnmath.com/studentportal/index.html#/dashboard/assessment/startassessment?assessmentid%3D37568
: Module 2
Q2. The sum of two numbers is 8. The sum of the squares of the same two numbers is 40. What are the numbers?
Click on image to enlarge if needed
O 3 and 5
4 and 4
O 2 and 6
1 and 7
us
acer
女
@
#3
2$
&
3
4
O O
回 %5
arrow_forward
answer number 2 question only please
arrow_forward
NCIPLES( X
L Line of Best Fit Worksheet Feb 11 X
Ja Desmos | Graphing Calculator
drive.google.com/file/d/1YDQXNw50SCiOt1sNui04S-ZqxnyfAv8b/view
O Yoselin Reanos-Oliv.
A Dashboard
A Dashboard
A https://idp.ncedclo.
rksheet Feb 18.pdf
Open with ,
Algebra 2
2.4: Line of Best Fit Worksheet
Name
_Block:
1. The table below gives the number of hours spent studying for a science exam and the final exam
grade.
Study hours
4
2
3
Grade
77
92
70
63
90
75
84
a) Using graph paper, draw a scatterplot of the data.
b) What is the equation for the line of best fit? Sketch this on your graph.
Equation
c) Predict the exam grade of a student who studied for 6 hours.
Grade expected
d) Could this line go on forever? Why or why not?
2. The table below gives the height and shoe sizes of six randomly selected men.
Page
1755
Height (in.)
Shoe size
67
66
85
95
11
13
火
->
&
%23
6.
7
8.
9.
%24
arrow_forward
Chrome- Do Homework- HW #12 = 8.4, 9.1, 9.2
A mathxl.com/Student/PlayerHomework.aspx?homeworkld 610059707&questionld%35&flushed%-Dtrue&cld%3D6700191¢er
Math for Aviation I
E Homework: HW #12 = 8.4, 9.1, 9.2
Question 7, 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 value.
A= 76.9 mi2r= 76.9 mi, 0 = ?
radian
(Do not round until the final answer. Then round to three decimal places as needed.)
Heip me solve this
View an example
Get more belp-
DELL
arrow_forward
Student/611bb125fdb91dd9275f99f1#screenld%=Dbc98595e-dc0c-47ff-834-
Google Classroom
Maps
O Nearpod: You'll wo...
Nearpod- First Day... B Physical & Chemica.
Unit 1 Day 5 Fluency- 3 rigid motions; Version 2
Fabricio Diaz Perez
T.
8. Triangle RST has vertices R(10, 0), S(3, 4), and
T(4, 2). What is the resulting image of S' after a
translation two units down and four units right?
Rule:
n Tyne here to search
II
arrow_forward
Maya Paniagua - L8.5 HW.pdf
K Maya Paniagua - L8.5 CW.p
A web.kamihq.com/web/viewer.html?state%=%7B"ids"%3A%5B"1Y9_ze2BW1NVXIC
KS
Maya Paniagua - C.
Edu
Geometry 202.
Maya Paniagua - L8.5 HW.pdf
8. If DE = 16x - 3, EF = 9x + 11, and DF = 52, find HG.
arrow_forward
Click Here | Link
xM Inbox (12,529) - X
A Unit 2 Report on
# Movie_Hunger_Ga
% The Long War Bet
I Course Home
i mathxl.com/Student/PlayerHomework.aspx?homeworkld=591966703&questionld=1&flushed=false&cld=6344138¢erwin=yes
P Do Homewor
ath 243 - Business Calculus II Spring 2021
lomework: Section 6.1 Homework
core: 0 of 1 pt
6 of 10 (1 complete) v
-.1.14-BE
The price-earnings ratio of a stock is given by
R(P.E) ==
where P is the price of the stock and E is the earnings per share. Recently, the price per share of a certain company was $28.36 and the earnings per share were $2.38. Find the price-earnings ratio.
The price-earnings ratio is (Round to the nearest hundredth.)
Enter your anower in the anower box and then click Check Answer
All parts showing
Clear All
MacBook Pro
esc
G Search or type URL
%23
&
1
2
3
7
Q
W
E
R
T.
Y
tab
%3D
A
S
F
G
H
J
K
caps lock
?
Z
V
N
M
hift
.. .-
v •
arrow_forward
MAPEH-10-Q3-Week-4.pdfX
Filipino-10-Q3-Week-4.pdf X
TLE CSS 10 Quarter3 Week X
ESP-10-03-Weeks-3-4.pdf
Math 10 Q3 Week 5.p
sers/L%20E%2ON%200%20V%200%20-%20P%20C/Downloads/Math%2010%20Q3%20Week%205.pdf
Facebook
- +
E| D Page view A Read aloud | Draw
E Highlight
b. 362 880
b. 181 440
C. 60 480
d. 30 240
3. Abby is selecting 3 desserts from 10 possible choices displayed on the dessert cart at a restaurant. How
many selections are there?
b. 120
b. 240
C. 360
d. 720
4. A mother, a father, and their 4 children will dine in a restaurant with circular tables. In how many ways
can the family be seated in a table?
b. 24
b. 56
C. 120
d. 720
5. From a Grade 10 class of 28 students, five representatives are to be chosen for academic competition.
In how many ways can students be chosen to represent their class?
b. 12 285
b. 19 565
C. 49 140
d. 98 280
6. Mr. Reyes has a vault with four-digit combination lock. He can set the combination himself. He can use
the digits 0 - 9. Each digit can be used…
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Trigonometry (MindTap Course List)
Trigonometry
ISBN:9781305652224
Author:Charles P. McKeague, Mark D. Turner
Publisher:Cengage Learning
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage
Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill
Related Questions
- 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_forwardO Copy of Algebra I Final Exam - G x adocs.google.com/presentation/d/1ry04WKcCUYeulWtAru6SI1tYvzw6sP4PualkrbstAg/edit?ts=60747a30#slide-id.gb05bbbec93_26 68 f Algebra I Final Exam : View Insert Format Slide Arrange Tools Add-ons Help %23 Last edit was seconds ago IT O Present Background Layout- Theme Transition M 1 I 2 I 3 I 4 I S E 7 ..B ...I .. 9. ..E Standard 2: Line of Best Fit #1 of 1 # of # of A. Write the equation of the line of best fit(from Desmos.com-instructions HERE Students students that like responded Math that B. Using your line of best fit equation, predict the number of students that like Math if 1000 students responded. SHOW WORK with your equation and round down to the nearest person. 30 24 41 31 C. If you found that 200 students like Math, how many students responded? SHOW WORK with your equation and round up to the nearest person! 80 68 100 85 110 94 D. Predict the number of students that like Math if 25,000 students were surveyed. SHOW WORK with your equation! 150…arrow_forwardcom/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
- Module 13 Lecture Materials - MX WAHomework 9.1 and 9.3-9.6 MAT X webassign.net/web/Student/Assignment-Responses/submit?pos=3&dep3=23136141.. * © NP IU pps history 1302 book bio MATH 1342, sectio... psychology k kanopy ur best submission for each question part is used for your score. -/3.09 POINTS ILLOWSKYINTROSTAT1 9.PR.034. MY NOTES ASK YOUR TEACHER The probability of winning the grand prize at a particular carnival game is 0.005. Michele wins the grand prize. Is this considered a rare or common event? Why? This is considered a common event because the probability of it occurring is so high. This is considered a rare event because the probability of it occurring is so high. This is considered a common event because the probability of it occurring is so low. This is considered a rare event because the probability of it occurring is so low. Additional Materials eBook Submit Answer View Previous Question Question 5 of 11 View Next Question Home My Assignments +Request Extension…arrow_forwardNM ANOVATION ACADEMY Bb WIX A X Pf Pf www-awu.aleks.com/alekscgi/x/lsl.exe/1o_u-lgNslkasNW8D8A9PVWRD7z2fbLpYbnRLf8ocURSKhJQO_itZs8shVH-FDXULHKG9X. O GRAPHS AND FUNCTIONS Finding values and intervals where the graph of a function is... Use the graph of the function y=g(x) below to answer the questions. %3D (a) Is g(-2) negative? (0,0) (0,0) O Yes O No (b) For which value(s) of x is g(x) = 0? If there is more than one value, separate them with commas. [0,0) (0,0) OvO (c) For which value(s) of x is g(x)<0? Write your answer using interval notation. Explanation Check 72022 McGraw Hill LLC. AI ASUS f3 f4 f5 f7 f10 11 IIIarrow_forwardMalikinorschool.com/Student/PlayerHomework.aspx?homeworkld=29428062&questionld=2&flushed%-false&cld35 a SDPBC Bookmarks O Portal (141) Dashboard |-- E Factoring Notes-G.. 6 ef Review Of Menstrua. Period 4-Semester 2 Homework: Inscribed Angles core: 0 of 1 pt 2 of 6 (3 complete) 12.3.7 Find the value of a. The dot represents the center of the circle. Enter your answer in the answer box and then click Check Answer. Clear All All parts showing DELL Ce %23 24 & 3 4 5arrow_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_forwardPlease answer the question below in the photoarrow_forwardhttps://www.webassign.net/web/Student/Assignment-Responses/submit?dep=30436356&tags-autosave#question3732841_7 ar quick access, place your favorites here on the favorites bar. Manage favorites now A newspaper article discussing whether Social Security could be cut offered the information shown in the figure below. Use the information in these graphs to answer the question. The crunch to come... Social security taxes were raised to build a surplus... Money paid into the system has been greatly exceeding benefits since 1983. Scale in billions of dollars. 11 T 1 T 1960 65 *70 75 '80 Collected But the baby boomers will break the bank... By one government projection, the Social Security system will be paying out more than it is taking in by 2015, and the trust fund will run out of money by the year 2036. Scale in billions of dollars. 1 T 1995 '00 '05 '10 '10 1 15 Need Help? Read It 1 20 When will the baby boomers break the bank? Paid out | 1 '85 '90 1 25 Hi I 30 $300 250 I 35 200 150 100 50…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_forwardG 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_forwardShow all steps thank youarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Trigonometry (MindTap Course List)TrigonometryISBN:9781305652224Author:Charles P. McKeague, Mark D. TurnerPublisher:Cengage LearningAlgebra & Trigonometry with Analytic GeometryAlgebraISBN:9781133382119Author:SwokowskiPublisher:CengageGlencoe Algebra 1, Student Edition, 9780079039897...AlgebraISBN:9780079039897Author:CarterPublisher:McGraw Hill
Trigonometry (MindTap Course List)
Trigonometry
ISBN:9781305652224
Author:Charles P. McKeague, Mark D. Turner
Publisher:Cengage Learning
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage
Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill