STATS 10 Assignment 2 (1)
pdf
School
University of California, Los Angeles *
*We aren’t endorsed by this school
Course
10
Subject
Statistics
Date
Apr 3, 2024
Type
Pages
12
Uploaded by CommodoreCrow17890
STATS 10 Assignment 2
Lalonye Calhoun 006059433
Discussion 3A/B
Exercise 1
Work with lead and copper data obtained from the residents of Flint, Michigan from January-
February, 2017. Data are reported in PPB (parts per billion, or μg/L) from each residential
testing kit. Remember that “Pb” denotes lead, and “Cu” denotes copper. You can learn more
about the Flint water crisis at https://en.wikipedia.org/wiki/Flint_water_crisis.
a. Download the data from the course site and read it into R. Or use online data link:
read.csv(“https://ucla.box.com/shared/static/e9xuft4h3p8fdi4ydoj2hhujee0vmopb.csv”)
When you read in the data, name your object “flint”.
b. The EPA states a water source is especially dangerous if the lead level is 15 PPB or
greater. What proportion of the locations tested were found to have dangerous lead
levels?
-
.04436229%
c. Report the mean copper level for only test sites in the North region
.
-
44.6424
d. Report the mean copper level for only test sites with dangerous lead levels (at least 15
PPB)
.
-
141.9631
e. Report the mean lead and copper levels.
-
54.581 copper levels
-
3.383
f.
Create a box plot with a good title for the lead levels.
-
g. Based on what you see in part (f), does the mean seem to be a good measure of center
for the data? Report a more useful statistic for this data
-
No, The median would be better because the data is skewed
.
Exercise 2
The data here represent life expectancies (Life) and per capita income (Income) in 1974 dollars
for 101 countries in the early 1970’s. The source of these data is: Leinhardt and Wasserman
(1979), New York Times (September, 28, 1975, p. E-3). They also appear on Regression
Analysis by Ashish Sen and Muni Srivastava. You can access these data in R using:
life <-read.table("https://ucla.box.com/shared/static/rqk4lc030pabv30wknx2ft9jy848ub9n.txt",
header = TRUE)
a. Construct a scatterplot of Life against Income. Note: Income should be on the
horizontal axis. How does income appear to affect life expectancy?
-
The higher your income the more likely you are to live past 70, the less money you have
the more likely you are to die around 50.
b. Construct the boxplot and histogram of Income. Are there any outliers?
-
Boxplot: There were some outliers around 3000 to 5000
-
Histogram: I don't see any outliers
c. Split the data set into two parts: One for which the Income is strictly below $1000, and
one for which the Income is at least $1000. Come up with your own names for these two
objects.
-
lowerthan1000 = life[life$Income < 1000,]
-
-
Above1000 = life[life$Income > 1000,]
d. Use the data for which the Income is below $1000. Plot Life against Income and
compute the correlation coefficient. Hint: use the function cor()
-
0.752886
Exercise 3
The Maas river data contain the concentration of lead and zinc in ppm at 155 locations at
the banks of the Maas river in the Netherlands. You can read the data in R as follows:
maas <-
read.table("https://ucla.box.com/shared/static/tv3cxooyp6y8fh6gb0qj2cxihj8klg1h.txt",
header = TRUE)
a. Compute the summary statistics for lead and zinc using the summary() function.
-
Lead:
Min. 1st Qu.
Median
Mean 3rd Qu. Max.
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
-
37.0
72.5
123.0
153.4
207.0
654.0
-
Zinc:
Min.
1st Qu.
Median
Mean
3rd Qu.
Max.
-
113.0
198.0
326.0
469.7
674.5
1839.0
-
b
. Plot two histograms: one of lead and one of log(lead).
Lead:
Log:
c
. Plot log(lead) against log(zinc). What do you observe?
-
The correlation coefficient is positive and the graph is linear
-
d. The level of risk for surface soil based on lead concentration in ppm is given on the
table below:
The following commands give different colors and sizes on a scatterplot
For two variables: x, y
mycolors <- c("green", "orange", "red") #can be changed to other colors
mylevels <- cut(y, c(0, 100, 1000, 10000)) #the levels, can be changed to other values
mysize <- 19 #the point size, can be changed to other values
plot(x, y, col=colors[as.numeric(mylevels)], pch= mysize)
Use similar techniques to give different colors and sizes to the lead concentration at
these 155
Locations.
-
Exercise 4
The data for this exercise represent approximately the centers (given by longitude and latitude)
of each one of the City of Los Angeles neighborhoods. See also the Los Angeles Times project
on the City of Los Angeles neighborhoods at: http://projects.latimes.com/mapping-
la/neighborhoods/. You can access these data at:
LA <- read.table("https://ucla.box.com/shared/static/d189x2gn5xfmcic0dmnhj2cw94jwvqpa.txt",
header=TRUE)
a. Plot the data point locations. Use good formatting for the axes and title. Then add the
outline of LA County by typing:
map("county", "california", add = TRUE)
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
-
b. Do you see any relationship between income and school performance? Hint: Plot the
variable Schools against the variable Income and describe what you see. Ignore the data
points on the plot for which Schools = 0. Use what you learned about subsetting with
logical statements to first create the objects you need for the scatter plot. Then, create
the scatter plot. Alternate
methods may only receive half credit.
-
The scatterplot is linear meaning the more income increases the more school
performance increases. plots/variables seem to be a little associated.
Exercise 5
In this exercise, you will work with a dataset containing information about customers of a
retail store.
The dataset includes the following variables:
a. Customer ID: unique identifier for each customer
b. Age: age of the customer in years
c. Gender: gender of the customer (M for male, F for female)
d. Income: annual income of the customer in dollars
e. Education: education level of the customer (high school, some college, college degree,
graduate degree)
f. Marital status: marital status of the customer (single, married, divorced, widowed)
g. Purchase amount: the total amount the customer spent at the store in the past year
Load the data into R:
customer_data <-
read.csv("https://ucla.box.com/shared/static/y2y8rcie7mjw2h5t92x9dfcp133tc90h.csv")
a. Are there any missing values in the dataset? If so, how many are there and which
variables have missing values?
-
There are 22 Na’s in total
-
10 in NA’s age
-
5 in income
-
6 in purchase Amount
b. What is the data type of each variable? Are there any variables that should be
converted to a different data type?
Customer Id: shows numerical but is categorical
Age: numerical
Gender: categorical
Income: numerical
Education: categorical
Marital status: Categorical
Purchase amount: numerical
c. Do any numerical variables have outliers or extreme values? If so, how would you
handle them? Provide your analysis in R for identifying outliers (e.g., visualization,
numerical summary statistics). This is an open-ended question, so please feel free to use
any appropriate methods to identify and deal with any outliers or extreme values in the
dataset.
-
There are no outliers, I checked by graphing each numerical variable into box plots.
Part II
You may choose to type or write your answers electronically or scan your handwritten
solutions. Please ensure that you show all steps and explanations to receive full credit,
unless otherwise instructed.
Exercise 1
A study was done random sample of 900 college students. The researcher wants to find
out if gender would affect people’s body image. The two-way table below summarizes the
two variables.
a. In general, are students happy with their body weight? (Hint: Students that are happy
with their body weight responded "about right.")
-
600 out of 900 students are happy with body weight
b. If the researcher wants to compare the differences in body image between females and
males. What graph would best visualize the data for this purpose? Explain. (No need to draw
the actually plot)
-
A bar chart because we can see the comparisons side by side and their data
c. Are female students more likely to feel they are about right than male students?
Explain with numerical evidence.
-
Yes because .20% more females feel about right than males
d. For students who do not feel ‘about right’ with their body image, are there any
differences between the two gender groups? (Hint: are they more likely to feel there are
overweight or underweight? Do female students and male students feel the same way?)
-
More females feel overweight while more males feel underweight. There is more of a
deviation or difference in females for feeling underweight or overweight, there are 130
females that feel overweight, and only 30 feel underweight. While males have about a
5-person difference having 68 claiming they feel overweight and 72 feeling underweight.
So while I can’t truly see what males are more likely to feel other than about right,
females outside of that category are more likely to feel overweight.
Exercise 2
For each of the scatterplots shown, provide a written description that includes the
direction, form, and strength of the relationship, along with any outliers that do not fit the
general trend. In addition, explain what these characteristics mean in the context of the
data.
a. Data on 50 states taken from the U.S. Census shows how the median family income is
related to the population (25 years or older) with a college degree or higher.
-
The form is linear and the direction is positive meaning the higher your familial income
the more likely you are to get a degree. The association seems to be moderately strong
with some clustering around 50k of income stuck in between 15-20% of having a BA.
There is one obvious outlier at 60k of income surpassing everyone with 30% of a BA
which disrupts the trend of having a higher income for a higher percentage of a degree.
b. Consider the relationship between the average amount of fuel used (in liters) to drive a
fixed distance in a car (100 km), and the speed at which the car is driven (in km per hour).
-
The form is exponential or curving and does become linear until around 50km/h. The
direction is positive meaning the more speed increases the more fuel is used. There is
one outlier which I am assuming is the start of the car moving with 20 liters of fuel at
around km/h. The association has a strong positive correlation seeing as the data
increases in a positive linearly formed direction
c.
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
Exercise 3
A researcher collected data on the median starting salaries and the median mid-career
salaries for graduates at a selection of colleges. (Source: The Wall Street Journal, Salary
increase by salary type,
https://www.wsj.com/public/resources/documents/info-Salaries_for_Colleges_by_Type-
sort.html). The data points and the fitted least squares regression line are displayed in
the graph below.
a. What is the explanatory variable and response variable?
-
The explanatory variable is the median starting salary and the response variable is the
median mid-career salary
b. And why do you think the median salary is used instead of the mean?
-
Because the distribution is skewed and the median is best fitted for identifying skewed
data
c. Can the median mid-career salary be estimated given a median starting salary of 60 (in
thousands of dollars)? Please explain why or why not, and show your calculation and
explanation if possible.
-
d. Can the median mid-career salary be estimated given a median starting salary of 100
(in thousands of dollars)? Please explain why or why not, and show your calculation and
explanation if possible.
-
It can be estimated using the same equation as above but my only concern is it will not
be portrayed in the graph.
Exercise 4
Assume that the relationship between the calories in a five-ounce serving and the %
alcohol content for a sample of wines is linear. Use the % alcohol as the explanatory
variable, and fit a least squares regression line.
a. Calculate slope and intercept of the regression line.
-
The intercept is -77.55 and slope is 19.92
b. Report the equation of the regression line and interpret it in the context of the problem.
-
Yhat = 19.92x-77.55, tells me our direction is negative
c. Find and interpret the value of the coefficient of determination.
-
cor(df$calories, df$alcohol)
-
0.9439221
-
d. Suppose a new point was added to your data: a wine that is 20% alcohol that contains
0 calories. How will that affect the value of r and the slope of the regression line? (No
calculation needed)
Data table (Source:healthalicious.com)
Calories % alcohol
122 10.6
119 10.1
121 10.1
123 8.8
129 11.1
236 15.2
Table of summary statistics
Calories % alcohol
Mean 141.67 11.03
Std. Dev. 46.34 2.32
r 0.95
-
It will make the correlation weaker than it already is
Exercise 5
A doctor who believes strongly that antidepressants work better than "talk therapy" tests
depressed patients by treating half of them with antidepressants and the other half with talk
therapy. The doctor recruited 100 patients for the study. After six months’ treatment, the patients
will be evaluated on a scale of 1 to 5, with 5 indicating the greatest improvement. The doctor is
designing the study plan.
a. The doctor wants to put the most severe patients in the antidepressants group because he is
concerned about those patients’ conditions. Will this affect his ability to compare the
effectiveness of the antidepressants and the “talk therapy”? Explain.
-
Yes it will affect his study because now there are biases. The more severe patients may
notice a bigger change because of how sever their case is.
b. The doctor asks you whether it is acceptable for him to know which treatment each patient
receives. Explain why this practice may affect his ability to compare the two groups.
-
It may be okay but it may cause him to apply his confirmation biase considering he
already isn't a fan of talk therapy and this would tarnish the study even more.
-
c. What improvements to the plan would you recommend?
-
Id suggest a double blind study so the doctors personal opinions and biases can be
canceled out. I'd also suggest random sampling regardless of the patients severity
(consensually, if they feel they can try)
My work for part two:
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 Documents
Related Questions
The Iris Flower Data Set at
https://en.wikipedia.org/wiki/Iris flower data set e consists of
measurements taken from Iris flowers: the petal length and width and the
sepal length and width were measured in centimeters (cm) and recorded for
a lot of flowers.
We are interested in being able to use the petal width to predict the petal
length.
Use the Excel output provided below to answer the Iris Flower questions
that follow.
SUMMARY OUTPUT
Data from:
https://en.wikipedia.org/wiki/Iris flower data set
Using Petal Width to predict Petal Length.
Regression Statistics
Multiple R
0.962746025
R Square
0.926879908
Adjusted R Square
0.926385853
Standard Error
0.47895943
Observations
150
ANOVA
df
MS
Significance F
Regression
1
430.373884
430.373884
1876.067473 5.90274E-86
Residual
148
33.951516
0.229402135
Total
149
464.3254
Coefficients Standard Error
t Stat
P-value
Lower 95%
Upper 95%
Lower 95.0% Upper 95.0%
Intercept
1.079463302 0.073168311
14.75315321
7.2245E-31
0.934873757 1.224052847…
arrow_forward
The National Ignition Facility uses 6mm diameter pellets of deuterium (hydrogen with an extra neutron) cooled to 11 Kelvin as targets for it’s laser in an attempt to achieve nuclear fusion. Because of the massive energies involved, the targets must be constructed to a very high degree of accuracy. You sample 22 targets and their diameters are collected and stored in the data table.
round.diametermm..5.
1
5.99869
2
6.00053
3
5.99925
4
6.0009
5
5.9996
6
6.00188
7
6.00187
8
6.00091
9
5.99903
10
5.99889
11
6.00037
12
5.99907
13
6.00012
14
6.00114
15
5.99867
16
5.99962
17
5.99989
18
6.00147
19
6.0017
20
6.00153
21
6.0007
22
6.0018
a) State a null an an alternate hypothesis to test the claim that the target manufacturing process isperforming to specifications.(b) Conduct a hypothesis test to with an α = 0.01 to test your hypothesis(c) What sample size would be needed to reliably, with a probability of 80% or better, detect a deviation of…
arrow_forward
tools/retrieve?display-full_width&url=https%3A%2F%2Fwssu.quiz-Iti-iad-prod.instructure.com%2Fli%2F...
ions with a z-score between z₁ = 0.53 and 22 = 2.26. Give your answer to four decimal pl
ns with a z-score between 21 =-1.58 and 22 = 0.93. Give your answer to four decima
s with a z-score between 2₁ -1.46 and 22 0.26. Give your answer to two dec
arrow_forward
A legal case rested on whether a patent witness' signature was written on top of key text in a notebook or under the key text. The zinc measurements for three notebook
locations on a text line, on a witness line, and on the intersection of the witness and text line-are provided in the table below. Complete parts a through c below.
Text line
Witness line
0.319
0.384
0.327
Intersection
Find the test statistic.
HT-1400
0.321
0.307
0.327
t = (Round to two decimal places as needed.)
Find the p-value.
p-value= (Round to three decimal places as needed.)
a. Use a test (at a = 0.02) to compare the mean zinc measurement for the text line with the mean for the intersection.
Let μ represent the mean zinc measurement for the text line, let uw represent the mean zinc measurement for the signature of a patent witness, and let μ, represent the
mean zinc measurement for the intersection line. Select the correct hypotheses below.
OA. Ho: HT-Hw=0, H₂: HT μ₁0
OB. Ho: HT-H₁0, H₂: HT-H₁0
O C. Ho: HT-HW = 0,…
arrow_forward
A survey is carried out at a university to estimate the percentage of undergraduates living at home during the current term. What is the population? the parameter?
arrow_forward
lili
....
OFF
References
Mailings
Review
View >> Tell me
Sh
Draw
Design
Layout
12
AA
Aa v
ibri (Bo...
三 三三三E
Styles
Dictate
Create
x A -
130 adults with gum disease were asked the number of times per week they used to floss
before their diagnoses. The (incomplete) results are shown below:
# of times floss per week
Frequency
Relative Frequency
Cumulative Frequency
15
0.1154
33
1.
0.1385
51
2.
81
0.0769
3.
15
0.1154
4.
17
0.1308
93
5.
0.1538
113
6.
0.1308
130
7.
a. Complete the table (Use 4 decimal places when applicable)
b. What is the cumulative relative frequency for flossing 3 times per week? %
English (United States)
spioM 06
Focus
JAN
13
arrow_forward
Please review the SPSS output below. The output helps me to understand whether Blacks and Whites differ with respect to the
average number of children they have ever had. Then answer the questions beneath the output. You may provide your
answers directly in the space provide or upload a document with your response. PLEASE BE AWARE THAT I WILL NOT BE
ABLE TO OPEN ANY DOCUMENTS THAT ARE HEIC
Group Statistics
WHAT IS RS RACE 1ST
MENTION
WHITE
Std. Error
Mean
Mean
Std. Devlation
NUMBER OF CHILDREN
1011
1.81
1.560
049
BLACK OR AFRICAN
AMERICAN
192
1.84
1.748
126
Indgendent Sanplis Test
Lavent's TiS Eq.aho
Lowen
Upper
Equalvaranpes
252.12
a.
What kind of statistical test is this?
b.
Is Levene's test for homogeneity of variances statistically significant? How do you know?
C.
Which value for t do we interpret aCcording to this test? How do you know?
d.
Is the overalI test statistically significant? How do you know?
e.
What would the null and research hypotheses be for this statistical test?
f.…
arrow_forward
Please, I want a correct and clear solution to all paragraphs
arrow_forward
what is mode and how do i find it?
arrow_forward
File Edit
View
History
Bookmarks
Profiles
Tab Window Help
66% O E Sat 2:14 AN
Do Homework - Section 6.4 Homework
i mathxl.com/Student/PlayerHomework.aspx?homeworkld=594133179&questionld35&flushed=false&cld%36452260¢erwin=yes
Statistics (2)
catiuska trinidad & | 05/01/21 2:14 AM
Homework: Section 6.4 Homework
Save
Score: 0 of 1 pt
7 of 11 (6 complete) v
HW Score: 48.48%, 5.33 of 11 pts
6.4.9
Question Help v
An elevator has a placard stating that the maximum capacity is 1232 Ib-8 passengers. So, 8 adult male passengers can have a mean weight of up to
1232/8 = 154 pounds. If the elevator is loaded with 8 adult male passengers, find the probability that it is overloaded because they have a mean weight greater than
154 Ib. (Assume that weights of males are normally distributed with a mean of 161 Ib and a standard deviation of 34 Ib.) Does this elevator appear to be safe?
The probability the elevator is overloaded is.
(Round to four decimal places as needed.)
Enter your answer in the…
arrow_forward
Please solve part d, e, f, g.
In a certain jurisdiction, all students in Grade Three are required to take a standardized test to evaluate their math comprehension skills.The file contains these data resulting from a random sample of n=30 schools within this jurisdiction. From these data you wish to estimate the model
Yi=β0+β1Xi+ei
where Xi is the percentage of Grade Three students in School i who live below the poverty line and Yi is the average mathematics comprehension score for all Grade Three students in the same school, School i. The observed data for the X variable is labled perbelowpoverty and the observed data for the Y variable is labeled mathscore in the file.Import (either hand type or load the file) data into R Studio, then answer the following questions based on the data.(a) Create a scatterplot of the data. What can you say about the nature of the relationship between the percentage of Grade Three students living below the poverty line in a certain school and the school's…
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Big Ideas Math A Bridge To Success Algebra 1: Stu...
Algebra
ISBN:9781680331141
Author:HOUGHTON MIFFLIN HARCOURT
Publisher:Houghton Mifflin Harcourt
Related Questions
- The Iris Flower Data Set at https://en.wikipedia.org/wiki/Iris flower data set e consists of measurements taken from Iris flowers: the petal length and width and the sepal length and width were measured in centimeters (cm) and recorded for a lot of flowers. We are interested in being able to use the petal width to predict the petal length. Use the Excel output provided below to answer the Iris Flower questions that follow. SUMMARY OUTPUT Data from: https://en.wikipedia.org/wiki/Iris flower data set Using Petal Width to predict Petal Length. Regression Statistics Multiple R 0.962746025 R Square 0.926879908 Adjusted R Square 0.926385853 Standard Error 0.47895943 Observations 150 ANOVA df MS Significance F Regression 1 430.373884 430.373884 1876.067473 5.90274E-86 Residual 148 33.951516 0.229402135 Total 149 464.3254 Coefficients Standard Error t Stat P-value Lower 95% Upper 95% Lower 95.0% Upper 95.0% Intercept 1.079463302 0.073168311 14.75315321 7.2245E-31 0.934873757 1.224052847…arrow_forwardThe National Ignition Facility uses 6mm diameter pellets of deuterium (hydrogen with an extra neutron) cooled to 11 Kelvin as targets for it’s laser in an attempt to achieve nuclear fusion. Because of the massive energies involved, the targets must be constructed to a very high degree of accuracy. You sample 22 targets and their diameters are collected and stored in the data table. round.diametermm..5. 1 5.99869 2 6.00053 3 5.99925 4 6.0009 5 5.9996 6 6.00188 7 6.00187 8 6.00091 9 5.99903 10 5.99889 11 6.00037 12 5.99907 13 6.00012 14 6.00114 15 5.99867 16 5.99962 17 5.99989 18 6.00147 19 6.0017 20 6.00153 21 6.0007 22 6.0018 a) State a null an an alternate hypothesis to test the claim that the target manufacturing process isperforming to specifications.(b) Conduct a hypothesis test to with an α = 0.01 to test your hypothesis(c) What sample size would be needed to reliably, with a probability of 80% or better, detect a deviation of…arrow_forwardtools/retrieve?display-full_width&url=https%3A%2F%2Fwssu.quiz-Iti-iad-prod.instructure.com%2Fli%2F... ions with a z-score between z₁ = 0.53 and 22 = 2.26. Give your answer to four decimal pl ns with a z-score between 21 =-1.58 and 22 = 0.93. Give your answer to four decima s with a z-score between 2₁ -1.46 and 22 0.26. Give your answer to two decarrow_forward
- A legal case rested on whether a patent witness' signature was written on top of key text in a notebook or under the key text. The zinc measurements for three notebook locations on a text line, on a witness line, and on the intersection of the witness and text line-are provided in the table below. Complete parts a through c below. Text line Witness line 0.319 0.384 0.327 Intersection Find the test statistic. HT-1400 0.321 0.307 0.327 t = (Round to two decimal places as needed.) Find the p-value. p-value= (Round to three decimal places as needed.) a. Use a test (at a = 0.02) to compare the mean zinc measurement for the text line with the mean for the intersection. Let μ represent the mean zinc measurement for the text line, let uw represent the mean zinc measurement for the signature of a patent witness, and let μ, represent the mean zinc measurement for the intersection line. Select the correct hypotheses below. OA. Ho: HT-Hw=0, H₂: HT μ₁0 OB. Ho: HT-H₁0, H₂: HT-H₁0 O C. Ho: HT-HW = 0,…arrow_forwardA survey is carried out at a university to estimate the percentage of undergraduates living at home during the current term. What is the population? the parameter?arrow_forwardlili .... OFF References Mailings Review View >> Tell me Sh Draw Design Layout 12 AA Aa v ibri (Bo... 三 三三三E Styles Dictate Create x A - 130 adults with gum disease were asked the number of times per week they used to floss before their diagnoses. The (incomplete) results are shown below: # of times floss per week Frequency Relative Frequency Cumulative Frequency 15 0.1154 33 1. 0.1385 51 2. 81 0.0769 3. 15 0.1154 4. 17 0.1308 93 5. 0.1538 113 6. 0.1308 130 7. a. Complete the table (Use 4 decimal places when applicable) b. What is the cumulative relative frequency for flossing 3 times per week? % English (United States) spioM 06 Focus JAN 13arrow_forward
- Please review the SPSS output below. The output helps me to understand whether Blacks and Whites differ with respect to the average number of children they have ever had. Then answer the questions beneath the output. You may provide your answers directly in the space provide or upload a document with your response. PLEASE BE AWARE THAT I WILL NOT BE ABLE TO OPEN ANY DOCUMENTS THAT ARE HEIC Group Statistics WHAT IS RS RACE 1ST MENTION WHITE Std. Error Mean Mean Std. Devlation NUMBER OF CHILDREN 1011 1.81 1.560 049 BLACK OR AFRICAN AMERICAN 192 1.84 1.748 126 Indgendent Sanplis Test Lavent's TiS Eq.aho Lowen Upper Equalvaranpes 252.12 a. What kind of statistical test is this? b. Is Levene's test for homogeneity of variances statistically significant? How do you know? C. Which value for t do we interpret aCcording to this test? How do you know? d. Is the overalI test statistically significant? How do you know? e. What would the null and research hypotheses be for this statistical test? f.…arrow_forwardPlease, I want a correct and clear solution to all paragraphsarrow_forwardwhat is mode and how do i find it?arrow_forward
- File Edit View History Bookmarks Profiles Tab Window Help 66% O E Sat 2:14 AN Do Homework - Section 6.4 Homework i mathxl.com/Student/PlayerHomework.aspx?homeworkld=594133179&questionld35&flushed=false&cld%36452260¢erwin=yes Statistics (2) catiuska trinidad & | 05/01/21 2:14 AM Homework: Section 6.4 Homework Save Score: 0 of 1 pt 7 of 11 (6 complete) v HW Score: 48.48%, 5.33 of 11 pts 6.4.9 Question Help v An elevator has a placard stating that the maximum capacity is 1232 Ib-8 passengers. So, 8 adult male passengers can have a mean weight of up to 1232/8 = 154 pounds. If the elevator is loaded with 8 adult male passengers, find the probability that it is overloaded because they have a mean weight greater than 154 Ib. (Assume that weights of males are normally distributed with a mean of 161 Ib and a standard deviation of 34 Ib.) Does this elevator appear to be safe? The probability the elevator is overloaded is. (Round to four decimal places as needed.) Enter your answer in the…arrow_forwardPlease solve part d, e, f, g. In a certain jurisdiction, all students in Grade Three are required to take a standardized test to evaluate their math comprehension skills.The file contains these data resulting from a random sample of n=30 schools within this jurisdiction. From these data you wish to estimate the model Yi=β0+β1Xi+ei where Xi is the percentage of Grade Three students in School i who live below the poverty line and Yi is the average mathematics comprehension score for all Grade Three students in the same school, School i. The observed data for the X variable is labled perbelowpoverty and the observed data for the Y variable is labeled mathscore in the file.Import (either hand type or load the file) data into R Studio, then answer the following questions based on the data.(a) Create a scatterplot of the data. What can you say about the nature of the relationship between the percentage of Grade Three students living below the poverty line in a certain school and the school's…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Big Ideas Math A Bridge To Success Algebra 1: Stu...AlgebraISBN:9781680331141Author:HOUGHTON MIFFLIN HARCOURTPublisher:Houghton Mifflin Harcourt

Big Ideas Math A Bridge To Success Algebra 1: Stu...
Algebra
ISBN:9781680331141
Author:HOUGHTON MIFFLIN HARCOURT
Publisher:Houghton Mifflin Harcourt