Question

Which one of the following statements about GLMs and GAMs is FALSE? a.An iterative algorithm is...

Which one of the following statements about GLMs and GAMs is FALSE?

a.An iterative algorithm is used to fit both GLMs and GAMs. That is, it requires repeated computations that converge to the fitted model

b.If a data frame is fed into glm() using the data argument then if there are missing values in any variable in the formula then, by default, that row is deleted

c.The glm() function and gam() function(s) models the mean response

d.For GAMs the coefficients of smooth terms are highly interpretable (like LMs) and may be extracted by coef()

e.For GLM and GAM software the fitted() and predict()generic functions return values  and η^i respectively by default

f.Using a log link with binary data is possible but has the danger of fitted values being greater than 1

Smoothing requires the variable being smoothed to have certain properties. Alternatively, having certain properties may not be required but are certainly good if they hold. Which one of the following properties definitely need not hold?

a.Must be finite

b.Preferably has many unique values, e.g., more than 10

c.It's best that that variable is stored in a data frame

d.Must be numeric

e.Must be positive valued

Given vectors x (sorted and unique) and y, and a single value dfval, suppose one fits

fit <- smooth.spline(x, y, df = dfval, all = TRUE)

resss <- sum((y - fitted(fit))^2)

Suppose one steadily increases the value of dfval. Which one of the following statements is TRUE?

a.resss will decrease in value only if x is sorted into descending order

b.resss will remain unchanged

c.resss will decrease only if x is sorted in to ascending order

d.It is impossible to say how resss will change

e.resss will decrease in value

f.resss will increase in value

Homework Answers

Answer #1

If a data frame is fed into glm() using the data argument then if there are missing values in any variable in the formula then, by default, that row is deleted.the following statements about GLMs and GAMs is FALSE..hence b is the answer

Smoothing requires the variable being smoothed to have certain properties. Alternatively, having certain properties may not be required but are certainly good if they hold. It's best that that variable is stored in a data frame...hence C does not need to hold

It is impossible to say how resss will change...hence d is true

Note-if there is any understanding problem regarding this please feel free to ask via comment box..thank you

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Which one of the following statements about GLMs and GAMs is FALSE? a.An iterative algorithm is...
Which one of the following statements about GLMs and GAMs is FALSE? a.An iterative algorithm is used to fit both GLMs and GAMs. That is, it requires repeated computations that converge to the fitted model b.If a data frame is fed into glm() using the data argument then if there are missing values in any variable in the formula then, by default, that row is deleted c.The glm() function and gam() function(s) models the mean response d.For GAMs the coefficients...
1. Which of the following statements is correct? a. The median can be strongly influenced by...
1. Which of the following statements is correct? a. The median can be strongly influenced by just one or two very low or high values. b. The mode gives equal consideration to even very extreme values in the data. c. There will be just one value for the mean, median , and mode in the data set. d. The mean is able to make the most complete use of the data when compared to the median and mode. e. None...
Which of the following statements about the regression standard error hold TRUE? (2p) I. The regression...
Which of the following statements about the regression standard error hold TRUE? (2p) I. The regression standard error reflects the variation of the y-values about the regression line. II. The regression standard error is an estimate of the model standard deviation . III. The larger the regression standard error is, the better the model fits the data and the more precise inference about the regression model will be. A) I B) I and II C) II and III D) I,...
1)Adding an outlier in a scatterplot will do which of the following to the correlation coefficient?...
1)Adding an outlier in a scatterplot will do which of the following to the correlation coefficient? Explain a) Increase the correlation coefficient b) Decrease the correlation coefficient c) Change the correlation coefficient from positive to negative d) Change the correlation coefficient from negative to positive e) All options above are possible   2) When the correlation coefficient is close to +1, it indicates. Please explain a) changes in one variable cause changes in the other, but we don't know which one...
Which of the following statements are TRUE? Note that there may be more than one correct...
Which of the following statements are TRUE? Note that there may be more than one correct answer; select all that are true. 1. a) All else being equal, the standard deviation of the sampling distribution of the sample mean will be smaller for n = 10 than for n = 40. b) The value of a statistic does not vary from sample to sample. c) Statistics have sampling distributions. d) The value of a parameter does not vary from sample...
Question 1 Which statement is false about what Data Types defines Question 1 options: What values...
Question 1 Which statement is false about what Data Types defines Question 1 options: What values a variable cannot hold? How much memory will be reserved for the variable? What value a variable will hold? How the program will use the data type? Question 2 Using the structure below, which of the following statements about creating an array (size 20) of structures are not true? struct Employee{     string emp_id;     string emp_name;     string emp_sex; }; Question 2 options:...
An experiment on memory was performed, in which 16 subjects were randomly assigned to one of...
An experiment on memory was performed, in which 16 subjects were randomly assigned to one of two groups, called "Sentences" or "Intentional". Each subject was given a list of 50 words. Subjects in the "Sentences" group were told to form multiple sentences, each using at least two words from the list, and to keep forming sentences until all the words were used at least once. Subjects in the "Intentional" group were told to spend five minutes memorizing as many of...
I've posted this question like 3 times now and I can't seem to find someone that...
I've posted this question like 3 times now and I can't seem to find someone that is able to answer it. Please can someone help me code this? Thank you!! Programming Project #4 – Programmer Jones and the Temple of Gloom Part 1 The stack data structure plays a pivotal role in the design of computer games. Any algorithm that requires the user to retrace their steps is a perfect candidate for using a stack. In this simple game you...