Question
Please I want someone help me to solve this question a,b,c,d,e
I’m not sure about my solution
A food processor was receiving complaints from its customers about the firmness of its canned swe potatoes. The firms research scientist decided to gather data on their product to determine if addin pectin to the sweet potatoes might result in a product with a more desirable firmness. The scientist measured firmness on canned sweet potatoes at various pectin concentrations. Before testing, the ca were sealed and placed in a 25 C environment for 30 days. Pectin Concentration Firmness Readin 0% 1% 2% 3% 6.90, 50.20 1.30 56.48, 59.34, 62.9767.91, 70.78, 73.67 68.13, 70.85, 72.34 (a) Let x denote the pectin concentration of the sweet potatoes in a can and y denote the firmness reading following the 30 days of storage at 25 C. Plot the sample data in a scatterplot. Does firmness appear to have a linear relationship with pectin? Justify your answer (b) Using the model y-B+BX+E estimate parameters, test appropriate hypotheses for the slope c Make a residual plot to see whether the model appears to be appropriately specified. Justify you (d) Predict the firm.ness of a can of sweet potatoes treated with a 1.5% concentration of pectin (by (e) Make a new scatterplot of the sample data and include the estimated regression line. Comment parameter, and write a short paragraph stating your findings. answer weight) after 30 days of storage at 25 C. Comment on your prediction. this graph.
This is the data
firmness pectin 46.9 50.2 51.3 56.48 1 59.34 1 62.97 1 67.91 2 70.78 2 73.67 2 68.133 70.85 3 72.343 0

# Set directory to data folder
setwd("C:data")
# getwd()

# Read data from csv file
data <- read.csv("SweetPotatoFirmness.csv",header=TRUE, sep=",")
head(data)
str(data)

# scatterplot of independent and dependent variables
plot(data$pectin,data$firmness,xlab="Pectin, %",ylab="Firmness")

par(mfrow = c(2, 2)) # Split the plotting panel into a 2 x 2 grid

model <- lm(firmness ~ pectin , data=data)
summary(model)
plot(model)

par(mfrow=c(1,1))
# Residual Plot
data$residuals <- resid(model)
data$predict <- predict(model)
plot(data$predict,data$residuals,xlab="Fitted Values",ylab="Residuals")

# Estimated regression line and scatterplot of data
plot(data$pectin,data$firmness,xlab="Pectin, %", ylab="Firmness",
ylim=c(45,75),xlim=c(0,3),main="Simple Linear Regression",
pch=19,cex=1.5)
lines(sort(data$pectin),fitted(model)[order(data$pectin)], col="blue", type="l")

0 0
Add a comment Improve this question Transcribed image text
Answer #1

(a) following scatter plot shows there is strong relationship between pectine and firmness

(b) the regression line is given as , y=51.456+7.411x

the p-value =0.000 of the statistic t of the slope variable x, is less than typical value of alpha=0.05, so slope is significant

following regression analysis information has been generated using ms-excel

SUMMARY OUTPUT
Regression Statistics
Multiple R 0.913470961
R Square 0.834429196
Adjusted R Square 0.817872116
Standard Error 4.043147413
Observations 12
ANOVA
df SS MS F Significance F
Regression 1 823.8438 823.8438 50.39712 3.3E-05
Residual 10 163.4704 16.34704
Total 11 987.3142
Coefficients Standard Error t Stat P-value Lower 95% Upper 95%
Intercept 51.456 1.953026 26.34681 1.43E-10 47.10439 55.80761
X 7.411 1.043936 7.099093 3.3E-05 5.084965 9.737035

(c) residual plot, showed model is appropriate as it is scattered

Home InsertPage layout FormulasDReview MP Design Layout Formal 塑- X Show Detail Hide Detail Clear Data Analysis Filtefa-Reapply Sort&Filter From From From Fron Other ExistingRefresh Sort Teet to RemoveDa Consclidate what-If Group Ungroup Subtotal edCelumes Duplicates valdation Test Sources Co Get txternal Dste ions!! Allverdit links || Dsts lools Chart 2 X Variable 1 Residual Plot 10 1 15 22 3.5 13 15 16 17 XVariable 1 21 23 24 Sheet1 100%(d) for x=1.5, y=51.456+7.411*1.5=62.57

(e)please find the required scatter plot

Add a comment
Know the answer?
Add Answer to:
Please I want someone help me to solve this question a,b,c,d,e I’m not sure about my...
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. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • actually other expert help me with a solution for hw1 (thanks a lot for him). so...

    actually other expert help me with a solution for hw1 (thanks a lot for him). so , if you look just the question that I post you can see it or just write the first line of the question , thank you for your interest in my question . I post the code that I used at first homework # Set directory to data folder setwd("C:data") # getwd() # Read data from csv file data <- read.csv("SweetPotatoFirmness.csv",header=TRUE, sep=",") head(data) str(data)...

  • For expert using R , I solve it but i need to figure out what I...

    For expert using R , I solve it but i need to figure out what I got is correct or wrong. Thank you # Simple Linear Regression and Polynomial Regression # HW 2 # # Read data from csv file data <- read.csv("C:\data\SweetPotatoFirmness.csv",header=TRUE, sep=",") head(data) str(data) # scatterplot of independent and dependent variables plot(data$pectin,data$firmness,xlab="Pectin, %",ylab="Firmness") par(mfrow = c(2, 2)) # Split the plotting panel into a 2 x 2 grid model <- lm(firmness ~ pectin , data=data) summary(model) anova(model) plot(model)...

  • This is the third time I've posted this question. I'm asking that a computer program is not used and that work is shown. This isn't for a grade but I'm likely to be tested on this soon...

    This is the third time I've posted this question. I'm asking that a computer program is not used and that work is shown. This isn't for a grade but I'm likely to be tested on this soon. The information is from 11.7 and the questions I need to answer are from 11.13. Included in the post are the formulas I need to use. Please help me. Ag. 11.7 canned sweet potatoes. The firm's research scientist decided to conduct an experiment...

  • PLEASE ANSWER ALL parts . IF YOU CANT ANSWER ALL, KINDLY ANSWER PART (E) AND PART(F)...

    PLEASE ANSWER ALL parts . IF YOU CANT ANSWER ALL, KINDLY ANSWER PART (E) AND PART(F) FOR PART (E) THE REGRESSION MODEL IS ALSO GIVE AT THE END. REGRESSION MODEL: We will be returning to the mtcars dataset, last seen in assignment 4. The dataset mtcars is built into R. It was extracted from the 1974 Motor Trend US magazine, and comcaprises fuel consumption and 10 aspects of automobile design and performance for 32 automobiles (1973-74 models). You can find...

  • can somebody please help me with the question quickly I really need help with this, choose a country and research population data in order to fill out the table below.

    2. Choose a country and research population data in order to fill out the table beloa. Copy the population numbers counted each five years, as shown in the data base, for the years from 1950 to 2000 . Add a column, \(t\), measuring years șince 1945 .b. What is the country you selected? In what part of the world is it? What is the magnitude of its population numbers? \(\left(100,000^{\circ} \mathrm{s}\right.\), millions, hundred millions, billions?) Is it growing or shrinking...

  • Help & explain please Regression 1. A researcher is willing to investigate whether there is any...

    Help & explain please Regression 1. A researcher is willing to investigate whether there is any linear relation bet ween income (x) in thousand dollars and food expenditures (y) in hundred dollars. A sample data on 7 households given the table below was collected. Assuming that a linear model is used to solve the problem. r-3-D) r-I 83 24 13 61 15 17 1. Write down the linear model 2. Write down the fitted regression line and Interpret the slope...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT