subject
Engineering, 16.08.2021 20:40 jsh65bsbs

We have investigated the relationship between fathers' heights and sons' heights. But what about other parent-child relationships? Does one parent's height have a stronger association with a child height? How does the child's gender affect this relationship in heights? Are any differences that we observe statistically significant? The Galton dataset is a sample of one male and one female child from each family in the GaltonFamilies dataset. The pair column denotes whether the pair is father and daughter, father and son, mother and daughter, or mother and son. Create the galton dataset using the code below:
library(tidyverse)
library(HistData)
data("GaltonFamilies") set. seed(1)
# if you are using R 3.5 or earlier
set. seed(1, sample. kind = "Rounding")
# if you are using R 3.6 or later
galton <- GaltonFamilies %>%
group_by(family, gender) %>%
sample_n(1) %>% ungroup() %>%
gather(parent, parentHeight, father:mother) %>%
mutate(child = ifelse(gender == "female", "daughter", "son")) %>%
unite(pair, c("parent", "child"))
galton
Group by pair and summarize the number of observations in each group.
How many father-daughter pairs are in the dataset? unanswered
How many mother-son pairs are in the dataset? unanswered
Calculate the correlation coefficients for fathers and daughters, fathers and sons, mothers and daughters and mothers and sons.
Which pair has the strongest correlation in heights?
fathers and daughters
fathers and sons
mothers and daughters
mothers and sons
unanswered
Which pair has the weakest correlation in heights?
fathers and daughters
fathers and sons
mothers and daughters
mothers and sons
unanswered
The information here applies to both parts.
Use lm() and the broom package to fit regression lines for each parent-child pair type. Compute the least squares estimates, standard errors, confidence intervals and p-values for the parentHeight coefficient for each pair.
What is the estimate of the father-daughter coefficient? unanswered
For every 1-inch increase in mother's height, how many inches does the typical son's height increase?
Give your answer as a number with no units.
Which sets of parent-child heights are significantly correlated at a p-value cut off of .05?
Select ALL that apply.
father-daughter
father-son
mother-daughter
mother-son
Which of the following statements are true?
Select ALL that apply.
All of the confidence intervals overlap each other.
At least one confidence interval covers zero.
The confidence intervals involving mothers' heights are larger than the confidence intervals involving fathers' heights.
The confidence intervals involving daughters' heights are larger than the confidence intervals involving sons' heights.
The data are consistent with inheritance of height being independent of the child's gender.
The data are consistent with inheritance of height being independent of the parent's gender.

ansver
Answers: 2

Another question on Engineering

question
Engineering, 04.07.2019 18:10
Apump is used to circulate hot water in a home heating system. water enters the well-insulated pump operating at steady state at a rate of 0.42 gal/min. the inlet pressure and temperature are 14.7 lbf/in.2, and 180°f, respectively; at the exit the pressure is 60 lbf/in.2 the pump requires 1/15 hp of power input. water can be modeled as an incompressible substance with constant density of 60.58 lb/ft3 and constant specific heat of 1 btu/lb or. neglecting kinetic and potential energy effects, determine the temperature change, in °r, as the water flows through the pump.
Answers: 1
question
Engineering, 04.07.2019 18:10
True or false (explain) (110)[111] is a slip system in bcc metals . the {111} family in fcc contains 8 planes. resolved shear stress (rss) in single crystals is just related to the applied stress. critical resolved shear stress (crss) in single crystal metals is direct proportional to the number of defects in the structure
Answers: 2
question
Engineering, 04.07.2019 18:20
Air is compressed isentropically from an initial state of 300 k and 101 kpa to a final temperature of 1000 k. determine the final pressure using the following approaches: (a) approximate analysis (using properties at the average temperature) (b) exact analysis
Answers: 1
question
Engineering, 04.07.2019 18:20
An engine runs on the ideal diesel cycle. the cycle has a compression ratio of 20 and a cutoff ratio of 2. the highest temperature in the cycle is 1200 k. if the heat into the system is 300 kj/kg of working fluid and using variable specific heats determine the work produced per mass of working fluid
Answers: 3
You know the right answer?
We have investigated the relationship between fathers' heights and sons' heights. But what about oth...
Questions
question
Chemistry, 26.10.2021 01:00
question
English, 26.10.2021 01:00
question
Mathematics, 26.10.2021 01:00
question
Mathematics, 26.10.2021 01:00
Questions on the website: 13722361