SlideShare a Scribd company logo
1 of 32
Assignment 3: Team Project Outline
(Complete by Sunday, Nov. 20)
Due No Due Date Points 50 Submitting a file upload
Start Assignment
This assignment is due in this Module.
This assignment aligns with Learning Outcomes 1, 2 and 4.
Directions
For this project you will work in a collaborative team to
identify a political issue. Your
team will then research, analyze, develop, and defend a position
within that issue. The
end product will be a paper that describes the issue and supports
your team’s
position. Remember, your goal is to select an issue, take a
position, and develop a
paper to support that position.
Political issues could include discussions on healthcare,
immigration reform,
American’s marijuana debate, tax reform, religious freedom act,
LGBTQ rights, and,
etc. If you are unsure of what constitutes a valid political issue,
please check with the
instructor for guidance in this area.
The outline should minimally contain the following sections:
1. Brief introduction and thesis statement
2. Overview of the issue (research including at least 5
references)
3. The team's position
11/15/22, 11:25 PM
Page 1 of 4
Team Project Outline Rubric
Criteria Ratings Pts
25 pts
4. Rationale for your position (research including at least 5
references)
5. Summary, conclusions and recommendations
Submission
A designated member will be the one who submits this
assignment. This assignment
requires a file upload submission. After you have reviewed the
assignment instructions
and rubric, as applicable, complete your submission by
selecting the Submit
Assignment button next to the assignment title. Browse for your
file and remember to
select the Submit Assignment button below the file to complete
your submission.
Review the confirmation annotation that presents after
submission.
Grading
This assignment is worth 50 points toward your final grade and
will be graded using
the Project Outline Rubric. Please use it as a guide toward
successful completion of
this assignment.
(1)
Organization 25 to >22.0 pts
Exemplary
The outline is
logically
organized with a
well-written
introduction,
thesis statement
and conclusion.
22 to >19.0 pts
Meets
Expectations
The outline is
logically
organized with a
well-written
introduction,
thesis statement
19 to >13.0 pts
Developing
The outline is
logically
organized with a
well-written
introduction,
thesis statement
and conclusion.
13 to >0 pts
Beginning
The outline is
loosely
organized with
an
introduction,
thesis
statement, and
11/15/22, 11:25 PM
Page 2 of 4
15 pts
10 pts
and conclusion.
One of these
requires
improvement.
One or more of
the introduction,
thesis statement,
and/or
conclusion
require
improvement.
conclusion.
The
introduction,
thesis
statement,
and/or
conclusion
require much
improvement.
Topic
Overview
15 to >13.0 pts
Exemplary
Provides an
overview that
comprehensively
describes the
selected
political issue.
The description
is clearly
supported with
the number of
scholarly
sources noted.
13 to >11.0 pts
Meets
Expectations
Provides an
overview that
comprehensively
describes the
selected
political issue.
The description
is clearly
supported with
fewer than the
number of
scholarly
sources noted
and is slightly
underdeveloped.
11 to >8.0 pts
Developing
Provides an
overview that
comprehensively
describes the
selected
political issue.
The description
is somewhat
supported with
at least one
scholarly source
and is
underdeveloped.
8 to >0 pts
Beginning
Few sources
cited can be
considered
appropriate and
from accepted
sources.
Attempts to
provides an
overview of the
selected
political issue.
However, the
description is
not supported
with scholarly
sources and is
significantly
underdeveloped.
Quality of
Work
10 to >8.0 pts
Exemplary
Quality of
writing is
exceptional
with no
spelling,
grammar, or
mechanical
8 to >7.0 pts
Meets
Expectations
Quality of
writing is good
with minor
spelling,
grammar, or
mechanical
7 to >5.0 pts
Developing
Quality of writing
is acceptable
with minor
spelling,
grammar, or
mechanical
errors that
5 to >0 pts
Beginning
Quality of writing
is unacceptable
with many
spelling,
grammar, or
mechanical
errors that
11/15/22, 11:25 PM
Page 3 of 4
Total Points: 50
errors. Writing
is organized
and well
developed.
errors that do
not interfere
with
comprehension.
usually do not
interfere with
comprehension.
significantly
interfere with
comprehension.
11/15/22, 11:25 PM
Page 4 of 4
library(MASS)
data("Boston")
colnames(Boston)
model_full <- lm(medv~., data = Boston)
summary(model_full)
model_1 <- lm(medv~crim+zn, data = Boston)
# Manually select
summary(model_full)
summary(model_1)
AIC(model_full); BIC(model_full)
AIC(model_1); BIC(model_1)
# Best Subset
install.packages('leaps')
library(leaps)
# regsubsets only takes data frame as input
subset_result <-
regsubsets(medv~.,
data=Boston,
nbest=2,
nvmax = 14)
summary(subset_result)
plot(subset_result)
# Backward Elimination
nullmodel <- lm(medv~1, data=Boston)
summary(model_full)
# has fitted: model_full <- lm(medv~., data=Boston)
model_step_b <- step(model_full, direction='backward')
# Forward Selection
model_step_f <- step(nullmodel,
scope=list(lower=nullmodel, upper=model_full),
direction='forward')
# Stepwise Selection
model_step_s <- step(nullmodel,
scope = list(lower=nullmodel, upper=model_full),
direction='both')
Instruction of Lab 8
EBTM 350, Fall 2022, Professor: Xiaorui Zhu, Ph.D.
Purpose: I hope that by doing this lab, you will get a taste of
how to prepare your final project, as well
as (1) practice your R coding; (2) get an idea of the entire
process (Exploratory Data Analysis,
regression modeling, data mining, interpreting results, etc.); and
(3) realize that data
understanding and result interpretation are not trivial tasks, and
they are extremely important in
business projects. Submit a Word file with all the following
sections and results well organized.
Requirements:
1. (5 points) Write an interesting story in the first section
(Background or Introduction). In my class case, we
want to forecast the median home value in the Boston area (or
the wine-tasting preference), but I would
refrain from offering you a specific context. I require you to
think about in what situations, you may need to
forecast the median home price for your business/clients and
write down your story.
a. For example, you can pretend you are a real estate buyer
agent. Your decision is to give a
recommendation for your client (buyer) to make a reasonable
offer for the house they are interested in.
So, you want to predict the median house price in a certain area
with attributes so that your clients can
use it as a reference to make the offer.
b. Another simple example: From an analyst’s perspective, I
want to understand how these predictors are
associated with the median home price. What are those major
contributors? So, when I want to buy a
house, I should focus on these important attributes because they
highly affect the market value of the
house.
c. Yours.
2. (10 points) Exploratory Analyses & Visualization.
a. (2 pts) Explore the data (use plots, summary statistics, etc.)
and provide some findings and your
interpretation.
b. (2 pts) Explore the response variable: median house value
(use visualization tools, check outliers, etc.).
c. (2 pts) Explore some of the predictors that you believe are
important (use visualization tools, check
outliers, etc.).
d. (4 pts) Explore the associations between predictors and your
response variable visually and
quantitatively.
3. (20 points) Modeling and Interpretation of your results.
a. (6 pts) Use multiple linear regression models we just learned.
You may need to explore models with
different predictors and find the best one.
b. (6 pts) Use at least one variable selection method we learned
this week (Best subset selection, Forward,
backward, stepwise selection) to find the best model.
c. (8 pts) Interpret the fitted model from multiple perspectives:
find these significant predictors by t-test (2
pts), interpret the coefficient estimates (4 pts), and check
whether the whole model is significant (F-
test) (2 pts).
4. (5 points) Summary or Conclusion:
a. (2 pts) Compare all the models you obtained (Use information
criteria AIC/BIC, and goodness-of-fit R2 to
support your conclusion).
b. (2 pts) Provide a suggestion of the best model.
c. (1 pts) Conclude your findings: what predictors are useful,
what is the performance of your model etc.
To: Mr. Zhu, Director of Investment Analysis
From: Lexi Cioffi, Investment Analysis Intern
Date: November 11, 2022
Subject: Boston Housing Exploratory Analysis
Introduction
As an intern at the Investment Analysis Group, I have prepared
this evaluative report in order to make
recommendations for investors on which residential properties
are the best to invest in within the Boston
area. Recently, our new clients asked our firm to determine the
variables that most significantly influence
the median home value in Boston in order to make a
recommendation of which residential properties
within the area are the best to invest in. It is important for our
clients to know what variables significantly
influence median home value in order to make wiser
investments and hopefully increase their return on
investment. There are 14 values that I will use throughout my
analysis: CRIM (per capita crime rate by
town), ZN (proportion of residential land zoned for lots over
25,000 sq. ft.), INDUS (proportion of non-
retail business acres per town), CHAS (Charles River dummy
variable; 1 if tract bounds river; 0
otherwise), NOX (nitric oxides concentration; parts per 10
million), RM (average number of rooms per
dwelling), AGE (proportion of owner-occupied units built prior
to 1940), DIS (weighted distances to five
Boston employment centers), RAD (index of accessibility to
radial highways), TAX (full-value property-
tax rate per $10,000), PTRATIO (pupil-teacher ratio by town),
B (1000(Bk-0.63)^2 where Bk is the
proportion of blacks by town), LSTAT (% lower status of the
population), and MEDV (median value of
owner-occupied homes in $1000’s). Our clients would like us to
consider all of the variables in our
evaluation, and then present to them the most significant as well
as the least significant variables that play
a role in predicting the median home value within the Boston
area.
Exploratory Analyses and Visualization
Before conducting a full linear regression analysis, I began by
exploring the Boston Housing Data using
plots and summary statistics. Using the R code
summary(Boston) I was able to retrieve summary statistics
on each of the 14 variables. For a more specific description of
the quantities that I retrieved, please
reference Figure 1.
Figure 1. Summary statistics of the
Boston Housing Data, providing
values of minimum, maximum,
mean, median, and interquartile
range for each of the 14 variables.
After evaluating the summary data for each of the 14 variables,
I noticed that there was a significant range
of values for the majority of the variables being examined. This
extent of variation confirms that a model
is absolutely necessary in order to best capture all of the data as
well as to predict which variables have an
influence on the median home value.
Evaluating Predictor Variables
I then decided to investigate individual variables that I felt
would hold a greater influence on the median
home value in Boston, as well as those that I felt are the most
relevant when evaluating a residential
property investment. The three variables that I chose to
investigate were: crim, age, and tax.
Figure 2. Histogram of the per capita crime rate by town
in the Boston area.
Figure 3. Histogram of the proportion of owner-occupied
units built prior to 1940.
Figure 4. Histogram of the full-value property-tax per
$10,000.
I created a histogram for each of the three determined variables
using the following R code:
hist(Boston$crim, c = “blue”), hist(Boston$age, c = “blue”),
hist(Boston$tax, c = “blue”). From the
three figures above, I was able to draw conclusions about the
range of the variables as well as the relative
frequencies of their values. Figure 1 demonstrates that the per
capita crime rate per town most commonly
falls between the range of 10 and 20, with very few responses
having a value above 20. Figure 2
demonstrates that the proportion of owner-occupied units built
prior to 1940 ranges from a proportion of
0 to a proportion of 100, with the most common segment being
a proportion between 90 and 100. Finally,
Figure 3 demonstrates that the full-value property-tax per
$10,000 does not have any data that falls
between the range of 500 and 650, and that the most frequent
value fall between the range of 650 and 700.
Evaluating the Response Variable
When looking at the response variable, medv, I used a boxplot
in order to spot potential outliers and gain
a visual representation of the data using R code
boxplot(Boston$medv). I also made a histogram with the
median home value data in order to get a different visual
representation of the data using R code
hist(Boston$medv, c = “blue”).
Figure 5. Boxplot of the median value of
owner-occupied homes in the Boston area.
Figure 6. Histogram of the median value of
owner-occupied homes in the Boston area.
Figures 5 above shows the extensive number of outliers that
exist in the median value data. The median of
the median value data is around 22, with values approximately
38 or greater being considered outliers in
the data set. Figure 6 confirms these findings. The histogram of
the median value of owner-occupied
homes shows that the most frequent value is between 20-25,
with the second most frequent between 15-
20.
Predictor Variable Associations
After evaluating the three predictor variables that I felt were
most significant (crim, age, tax) and the
response variable (medv) on their own, I evaluated the
correlations that exist between those variables in
order to gain additional insight into the data set. To explore the
associations between these variables and
the median home value, I decided to utilize scatterplots as well
as calculate the correlation coefficient that
exists between the two variables using R code
plot(Boston$medv~Boston$crim, main="Scatterplot of
medv Against crim", xlab = "crim", ylab = "medv", pch=16) and
cor(Boston$medv, Boston$crim).
Figure 7. Scatterplot of median value of owner-
occupied homes and crime rate per capita by town.
Correlation coefficient: -0.388
Figure 8. Scatterplot of median value of owner-
occupied homes and proportion of owner-occupied
units built prior to 1940.
Correlation coefficient: -0.378
Figure 9. Scatterplot of median value of owner-
occupied homes and full-value property-tax rate per
$10,000.
Correlation coefficient: -0.469
Figure 7 represents the relationship between the median home
value and the per capita crime rate per
town. With a correlation coefficient of -0.388, the variables can
be said to have a negative correlation.
Having a negative correlation signifies that as the median home
value decreases, the crime rate increases,
or that as the median home value increases, the crime rate
decreases. The scatterplot demonstrates the
trend of negative correlation. Figure 8 represents the
relationship between the median home value and the
proportion of owner-occupied homes built prior to 1940. With a
correlation of coefficient of -0.378, the
variables can be said to have a negative correlation. The
scatterplot demonstrates the relationship of
negative correlation because as the age range increases, the
median home value generally decreases.
Figure 9 represents the relationship between the median home
value and the full-value property-tax rate.
With a correlation coefficient of -0.469, the variables can be
said to have a negative correlation that is
even stronger than that of the crim and age variables. The
scatterplot demonstrates this negative
correlation because as the property-tax rate increases, the
median home value generally decreases.
Modeling and Interpretation of Results
In order to evaluate the significance that variables have in
predicting the median home value in Boston, I
began with a model that accounted for all 14 variables that I
was given, using R code model_full <-
lm(medv ~ ., data = Boston). One other model that I wanted to
create was one only accounting for the
three variables I felt were most impactful in investment
selection: crim, age, and tax. I created this second
model, called model1, using R code model_1 <- lm(medv ~ crim
+ age + tax, data = Boston). I received
summary statistic information for both of these models using R
code summary(model_full) and
summary(model1).
Figure 10. Summary statistics of the full variable
model, including all 14 predictor variables within
the Boston Housing Data. Estimate coefficients
and their significance as well as the coefficient of
determination for the model are included.
Figure 11. Summary statistics of the model
accounting for the previously selected crim, age,
and tax variables within the Boston Housing Data.
Estimate coefficients and their significance as well
as the coefficient of determination for the model
are included.
Between these two models, it can be interpreted that the full
model is better than model1. The coefficient
of determination, R2, for the full model is 0.7406, whereas the
R2 value for model1 is 0.2624. When
evaluating models, the model with the highest coefficient of
determination is the better fitted model.
Because the model1 R2 value is so low, it is unlikely that the
three selected predictor variables carry
heavy significance in predicting the median home value,
holding all other variables constant.
Determining the Best Model
With my three selected predictor variables producing the worse
model, I decided to determine the best
model by beginning with all 14 of the predictor variables in the
Boston Housing Data. My initial goal was
to find the best model that accounted for 3 of the predictor
variables, holding all other predictor variables
constant. To determine which 3 size model was the best
determinant of median home value, I used R code
bestsub <- regsubsets(medv ~., data=Boston, nbest=3, nvmax =
14). I then created a plot to visualize the
predictor variables using R code plot(bestsub)
Figure 12. A plot demonstrating the best subsets to
create a size 3 model that best predicts the median
home value in the Boston Housing Data.
Upon examining the figure above, I determined that the best
size 3 model, holding all other variables
constant, accounts for the variables rm, ptratio, and lstat. On the
chart, these variables appear first with the
lowest associated BIC, and the lower the BIC, the better the
model. The R code for this model is
model_best <- lm(medv ~ rm + ptratio + lstat, data = Boston).
Using R code summary(model_best) I
determined that the coefficient of determination for this model
is 0.6786, indicating that there is a better
model, though my model_best was the best model that existed
when accounting for only 3 of the
predictor variables.
In order to find the model that best predicts the Boston Housing
Data, I first established a null model to
which I could compare my best fitted model to using R code
nullmodel <- lm(medv~1, data=Boston). In
order to determine the best model, I decided to proceed with the
backward selection method, using R code
model_step_b <- step(model_full, scope=list(lower=nullmodel,
upper=model_full), direction =
‘backward’).
Figure 13. Data demonstrating the backward
model selection method for the Boston Housing
Data.
After evaluating the backward selection method, I determined
that the best model for predicting the
median value of homes in the Boston area is one that includes
all of the predictor variables except for the
age and indus variables. In the backward selection method, it is
shown that removing age and indus will
provide the lowest AIC value. Because the lower the AIC, the
better the model, those two variables are
the only two which need to be removed in order to further
decrease the AIC. On the other hand, the
backward selection method tells us that the worst variables to
eliminate from the model, in order, are:
lstat, rm, and dis. This finding is relatively consistent with the
model that I made above which included
only the three best predictor variables to use in a model. This
means that the model which best predicts
the median home value can be established using R code:
bestmodel <- lm(medv ~ . - indus - age, data =
Boston)
After running the best model, the coefficients for each of the
included variables were as follows: intercept
36.341, crim -0.108, zn 0.046, chas 2.72, nox -17.378, rm
3.802, dis -1.49, rad 0.300, tax -0.012, ptratio -
0.947, black 0.009, lstat -0.523. An example interpretation of
the coefficient of rm would be that 1
additional room in a home impacts the median home value by a
factor of 3.802, holding all other variables
constant. Within this model, the p values for each of the
coefficients are less than 0.05, indicating that the
findings are statistically significant. This means that I reject the
null hypothesis that there is no
association between the predictor variables and the response
variable. Additionally, the p value of the f-
test is also smaller than 0.05, meaning that at least one of the
predictor variables has an impact on the
response variable and does not have a coefficient of 0.
Conclusion
After concluding my analysis, I have determined that the
following model is the most significant in
determining the median home value in Boston: medv ~ . – indus
– age. I believe that the predictor
variables indus and age should not be included in a model to
determine the median home value in Boston
because they increase the value of the AIC. The model
accounting for all of the response variables has an
AIC value of 1589.6, whereas the model without the indus and
age variables has a lower AIC value of
1587.7. Additionally, in the best model, the R2 value is 0.7406,
meaning that 74.06% of the variation in
the data is explained by the model. Additionally, we can tell our
clients that when considering their future
residential investments in the Boston area, the three most
important variables to consider are rm, ptratio,
and lstat – if they are only wishing to consider the three most
important variables.

More Related Content

Similar to Assignment 3 Team Project Outline(Complete by Sunday, Nov. .docx

ESD_Template_January.pdf
ESD_Template_January.pdfESD_Template_January.pdf
ESD_Template_January.pdfTHEFASHNDESK
 
Btt 1 o8 ethical issues in developing technologies
Btt 1 o8 ethical issues in developing technologiesBtt 1 o8 ethical issues in developing technologies
Btt 1 o8 ethical issues in developing technologiesshanzehhh
 
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docx
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docxFinancial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docx
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docxlmelaine
 
1 Social Science Statistics Project 1 Global Issu.docx
 1 Social Science Statistics  Project 1 Global Issu.docx 1 Social Science Statistics  Project 1 Global Issu.docx
1 Social Science Statistics Project 1 Global Issu.docxShiraPrater50
 
1 Social Science Statistics Project 1 Global Issu.docx
1 Social Science Statistics  Project 1 Global Issu.docx1 Social Science Statistics  Project 1 Global Issu.docx
1 Social Science Statistics Project 1 Global Issu.docxpoulterbarbara
 
PSY 616 Final Project Guidelines and Grading Guide O.docx
PSY 616 Final Project Guidelines and Grading Guide  O.docxPSY 616 Final Project Guidelines and Grading Guide  O.docx
PSY 616 Final Project Guidelines and Grading Guide O.docxpotmanandrea
 
Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx
 Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx
Franchise Agreement Analysis Paper Guidelines and Grading Guide.docxMARRY7
 
BSOP 326 Success Begins /newtonhelp.com 
BSOP 326 Success Begins /newtonhelp.com BSOP 326 Success Begins /newtonhelp.com 
BSOP 326 Success Begins /newtonhelp.com myblue117
 
Newdesigncycleintro 140901083345-phpapp02
Newdesigncycleintro 140901083345-phpapp02Newdesigncycleintro 140901083345-phpapp02
Newdesigncycleintro 140901083345-phpapp02ISM
 
Resume Return to Basicspublic
Resume Return to BasicspublicResume Return to Basicspublic
Resume Return to BasicspublicCatherine Neary
 
Week 3 Assignment Organizational Needs AssessmentSubmit As.docx
Week 3 Assignment Organizational Needs AssessmentSubmit As.docxWeek 3 Assignment Organizational Needs AssessmentSubmit As.docx
Week 3 Assignment Organizational Needs AssessmentSubmit As.docxendawalling
 
Project DetailsAs part of the course requirements, you wil.docx
Project DetailsAs part of the course requirements, you wil.docxProject DetailsAs part of the course requirements, you wil.docx
Project DetailsAs part of the course requirements, you wil.docxwkyra78
 
New design cycle intro
New design cycle introNew design cycle intro
New design cycle introISM
 
Sheet1695 grading rubric assignment 7 note all topics must be rel
Sheet1695 grading rubric assignment 7 note all topics must be relSheet1695 grading rubric assignment 7 note all topics must be rel
Sheet1695 grading rubric assignment 7 note all topics must be relrock73
 
BSOP 326 Education Organization -- snaptutorial.com
BSOP 326   Education Organization -- snaptutorial.comBSOP 326   Education Organization -- snaptutorial.com
BSOP 326 Education Organization -- snaptutorial.comDavisMurphyB63
 
Mb670 project management complete course
Mb670 project management   complete courseMb670 project management   complete course
Mb670 project management complete coursehomeworkecrater
 
Bsop 330Education Redefined / snaptutorial.com
Bsop 330Education Redefined / snaptutorial.comBsop 330Education Redefined / snaptutorial.com
Bsop 330Education Redefined / snaptutorial.comMcdonaldRyan190
 
FREE Mini-Course: Making the Switch from Compliance to Advisory Services
FREE Mini-Course: Making the Switch from Compliance to Advisory ServicesFREE Mini-Course: Making the Switch from Compliance to Advisory Services
FREE Mini-Course: Making the Switch from Compliance to Advisory ServicesSean Steigerwald
 
Bsop 326 Enhance teaching / snaptutorial.com
Bsop 326  Enhance teaching / snaptutorial.comBsop 326  Enhance teaching / snaptutorial.com
Bsop 326 Enhance teaching / snaptutorial.comStokesCope160
 

Similar to Assignment 3 Team Project Outline(Complete by Sunday, Nov. .docx (20)

ESD_Template_January.pdf
ESD_Template_January.pdfESD_Template_January.pdf
ESD_Template_January.pdf
 
Btt 1 o8 ethical issues in developing technologies
Btt 1 o8 ethical issues in developing technologiesBtt 1 o8 ethical issues in developing technologies
Btt 1 o8 ethical issues in developing technologies
 
Finance homework help
Finance homework helpFinance homework help
Finance homework help
 
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docx
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docxFinancial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docx
Financial Statement AnalysisRatio Analysis ExamplePrufrock Cor.docx
 
1 Social Science Statistics Project 1 Global Issu.docx
 1 Social Science Statistics  Project 1 Global Issu.docx 1 Social Science Statistics  Project 1 Global Issu.docx
1 Social Science Statistics Project 1 Global Issu.docx
 
1 Social Science Statistics Project 1 Global Issu.docx
1 Social Science Statistics  Project 1 Global Issu.docx1 Social Science Statistics  Project 1 Global Issu.docx
1 Social Science Statistics Project 1 Global Issu.docx
 
PSY 616 Final Project Guidelines and Grading Guide O.docx
PSY 616 Final Project Guidelines and Grading Guide  O.docxPSY 616 Final Project Guidelines and Grading Guide  O.docx
PSY 616 Final Project Guidelines and Grading Guide O.docx
 
Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx
 Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx
Franchise Agreement Analysis Paper Guidelines and Grading Guide.docx
 
BSOP 326 Success Begins /newtonhelp.com 
BSOP 326 Success Begins /newtonhelp.com BSOP 326 Success Begins /newtonhelp.com 
BSOP 326 Success Begins /newtonhelp.com 
 
Newdesigncycleintro 140901083345-phpapp02
Newdesigncycleintro 140901083345-phpapp02Newdesigncycleintro 140901083345-phpapp02
Newdesigncycleintro 140901083345-phpapp02
 
Resume Return to Basicspublic
Resume Return to BasicspublicResume Return to Basicspublic
Resume Return to Basicspublic
 
Week 3 Assignment Organizational Needs AssessmentSubmit As.docx
Week 3 Assignment Organizational Needs AssessmentSubmit As.docxWeek 3 Assignment Organizational Needs AssessmentSubmit As.docx
Week 3 Assignment Organizational Needs AssessmentSubmit As.docx
 
Project DetailsAs part of the course requirements, you wil.docx
Project DetailsAs part of the course requirements, you wil.docxProject DetailsAs part of the course requirements, you wil.docx
Project DetailsAs part of the course requirements, you wil.docx
 
New design cycle intro
New design cycle introNew design cycle intro
New design cycle intro
 
Sheet1695 grading rubric assignment 7 note all topics must be rel
Sheet1695 grading rubric assignment 7 note all topics must be relSheet1695 grading rubric assignment 7 note all topics must be rel
Sheet1695 grading rubric assignment 7 note all topics must be rel
 
BSOP 326 Education Organization -- snaptutorial.com
BSOP 326   Education Organization -- snaptutorial.comBSOP 326   Education Organization -- snaptutorial.com
BSOP 326 Education Organization -- snaptutorial.com
 
Mb670 project management complete course
Mb670 project management   complete courseMb670 project management   complete course
Mb670 project management complete course
 
Bsop 330Education Redefined / snaptutorial.com
Bsop 330Education Redefined / snaptutorial.comBsop 330Education Redefined / snaptutorial.com
Bsop 330Education Redefined / snaptutorial.com
 
FREE Mini-Course: Making the Switch from Compliance to Advisory Services
FREE Mini-Course: Making the Switch from Compliance to Advisory ServicesFREE Mini-Course: Making the Switch from Compliance to Advisory Services
FREE Mini-Course: Making the Switch from Compliance to Advisory Services
 
Bsop 326 Enhance teaching / snaptutorial.com
Bsop 326  Enhance teaching / snaptutorial.comBsop 326  Enhance teaching / snaptutorial.com
Bsop 326 Enhance teaching / snaptutorial.com
 

More from SusanaFurman449

Please read the description of the Religion ethnography carefully an.docx
Please read the description of the Religion ethnography carefully an.docxPlease read the description of the Religion ethnography carefully an.docx
Please read the description of the Religion ethnography carefully an.docxSusanaFurman449
 
PLEASE read the question carefully.  The creation of teen ido.docx
PLEASE read the question carefully.  The creation of teen ido.docxPLEASE read the question carefully.  The creation of teen ido.docx
PLEASE read the question carefully.  The creation of teen ido.docxSusanaFurman449
 
Please reflect on the relationship between faith, personal disciplin.docx
Please reflect on the relationship between faith, personal disciplin.docxPlease reflect on the relationship between faith, personal disciplin.docx
Please reflect on the relationship between faith, personal disciplin.docxSusanaFurman449
 
Please read the following questions and answer the questions.docx
Please read the following questions and answer the questions.docxPlease read the following questions and answer the questions.docx
Please read the following questions and answer the questions.docxSusanaFurman449
 
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docx
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docxPRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docx
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docxSusanaFurman449
 
Must Be a hip-hop concert!!!!attend a .docx
Must Be a             hip-hop concert!!!!attend a           .docxMust Be a             hip-hop concert!!!!attend a           .docx
Must Be a hip-hop concert!!!!attend a .docxSusanaFurman449
 
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docx
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docxMini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docx
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docxSusanaFurman449
 
Please write these 2 assignments in first person.docx
Please write these 2 assignments in                 first person.docxPlease write these 2 assignments in                 first person.docx
Please write these 2 assignments in first person.docxSusanaFurman449
 
Personal Leadership Training plan AttributesColumbia South.docx
Personal Leadership Training plan  AttributesColumbia South.docxPersonal Leadership Training plan  AttributesColumbia South.docx
Personal Leadership Training plan AttributesColumbia South.docxSusanaFurman449
 
Need help on researching why women join gangs1.How does anxi.docx
Need help on researching why women join gangs1.How does anxi.docxNeed help on researching why women join gangs1.How does anxi.docx
Need help on researching why women join gangs1.How does anxi.docxSusanaFurman449
 
Jung Typology AssessmentThe purpose of this assignment is to ass.docx
Jung Typology AssessmentThe purpose of this assignment is to ass.docxJung Typology AssessmentThe purpose of this assignment is to ass.docx
Jung Typology AssessmentThe purpose of this assignment is to ass.docxSusanaFurman449
 
Journal of Organizational Behavior J. Organiz. Behav. 31, .docx
Journal of Organizational Behavior J. Organiz. Behav. 31, .docxJournal of Organizational Behavior J. Organiz. Behav. 31, .docx
Journal of Organizational Behavior J. Organiz. Behav. 31, .docxSusanaFurman449
 
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docx
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docxLDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docx
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docxSusanaFurman449
 
In this paper, you will select an ethics issue from among the topics.docx
In this paper, you will select an ethics issue from among the topics.docxIn this paper, you will select an ethics issue from among the topics.docx
In this paper, you will select an ethics issue from among the topics.docxSusanaFurman449
 
In the past few weeks, you practiced observation skills by watchin.docx
In the past few weeks, you practiced observation skills by watchin.docxIn the past few weeks, you practiced observation skills by watchin.docx
In the past few weeks, you practiced observation skills by watchin.docxSusanaFurman449
 
Overview After analyzing your public health issue in Milestone On.docx
Overview After analyzing your public health issue in Milestone On.docxOverview After analyzing your public health issue in Milestone On.docx
Overview After analyzing your public health issue in Milestone On.docxSusanaFurman449
 
Judicial OpinionsOverview After the simulation, justices writ.docx
Judicial OpinionsOverview After the simulation, justices writ.docxJudicial OpinionsOverview After the simulation, justices writ.docx
Judicial OpinionsOverview After the simulation, justices writ.docxSusanaFurman449
 
IntroductionReview the Vila Health scenario and complete the int.docx
IntroductionReview the Vila Health scenario and complete the int.docxIntroductionReview the Vila Health scenario and complete the int.docx
IntroductionReview the Vila Health scenario and complete the int.docxSusanaFurman449
 
In studying Social Problems, sociologists (and historians) identify .docx
In studying Social Problems, sociologists (and historians) identify .docxIn studying Social Problems, sociologists (and historians) identify .docx
In studying Social Problems, sociologists (and historians) identify .docxSusanaFurman449
 
I need help correcting an integrative review.This was the profes.docx
I need help correcting an integrative review.This was the profes.docxI need help correcting an integrative review.This was the profes.docx
I need help correcting an integrative review.This was the profes.docxSusanaFurman449
 

More from SusanaFurman449 (20)

Please read the description of the Religion ethnography carefully an.docx
Please read the description of the Religion ethnography carefully an.docxPlease read the description of the Religion ethnography carefully an.docx
Please read the description of the Religion ethnography carefully an.docx
 
PLEASE read the question carefully.  The creation of teen ido.docx
PLEASE read the question carefully.  The creation of teen ido.docxPLEASE read the question carefully.  The creation of teen ido.docx
PLEASE read the question carefully.  The creation of teen ido.docx
 
Please reflect on the relationship between faith, personal disciplin.docx
Please reflect on the relationship between faith, personal disciplin.docxPlease reflect on the relationship between faith, personal disciplin.docx
Please reflect on the relationship between faith, personal disciplin.docx
 
Please read the following questions and answer the questions.docx
Please read the following questions and answer the questions.docxPlease read the following questions and answer the questions.docx
Please read the following questions and answer the questions.docx
 
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docx
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docxPRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docx
PRAISE FOR CRUCIAL CONVERSATIONS Relationships ar.docx
 
Must Be a hip-hop concert!!!!attend a .docx
Must Be a             hip-hop concert!!!!attend a           .docxMust Be a             hip-hop concert!!!!attend a           .docx
Must Be a hip-hop concert!!!!attend a .docx
 
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docx
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docxMini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docx
Mini-Paper #3 Johnson & Johnson and a Tale of Two Crises - An Eth.docx
 
Please write these 2 assignments in first person.docx
Please write these 2 assignments in                 first person.docxPlease write these 2 assignments in                 first person.docx
Please write these 2 assignments in first person.docx
 
Personal Leadership Training plan AttributesColumbia South.docx
Personal Leadership Training plan  AttributesColumbia South.docxPersonal Leadership Training plan  AttributesColumbia South.docx
Personal Leadership Training plan AttributesColumbia South.docx
 
Need help on researching why women join gangs1.How does anxi.docx
Need help on researching why women join gangs1.How does anxi.docxNeed help on researching why women join gangs1.How does anxi.docx
Need help on researching why women join gangs1.How does anxi.docx
 
Jung Typology AssessmentThe purpose of this assignment is to ass.docx
Jung Typology AssessmentThe purpose of this assignment is to ass.docxJung Typology AssessmentThe purpose of this assignment is to ass.docx
Jung Typology AssessmentThe purpose of this assignment is to ass.docx
 
Journal of Organizational Behavior J. Organiz. Behav. 31, .docx
Journal of Organizational Behavior J. Organiz. Behav. 31, .docxJournal of Organizational Behavior J. Organiz. Behav. 31, .docx
Journal of Organizational Behavior J. Organiz. Behav. 31, .docx
 
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docx
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docxLDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docx
LDR535 v4Organizational Change ChartLDR535 v4Page 2 of 2.docx
 
In this paper, you will select an ethics issue from among the topics.docx
In this paper, you will select an ethics issue from among the topics.docxIn this paper, you will select an ethics issue from among the topics.docx
In this paper, you will select an ethics issue from among the topics.docx
 
In the past few weeks, you practiced observation skills by watchin.docx
In the past few weeks, you practiced observation skills by watchin.docxIn the past few weeks, you practiced observation skills by watchin.docx
In the past few weeks, you practiced observation skills by watchin.docx
 
Overview After analyzing your public health issue in Milestone On.docx
Overview After analyzing your public health issue in Milestone On.docxOverview After analyzing your public health issue in Milestone On.docx
Overview After analyzing your public health issue in Milestone On.docx
 
Judicial OpinionsOverview After the simulation, justices writ.docx
Judicial OpinionsOverview After the simulation, justices writ.docxJudicial OpinionsOverview After the simulation, justices writ.docx
Judicial OpinionsOverview After the simulation, justices writ.docx
 
IntroductionReview the Vila Health scenario and complete the int.docx
IntroductionReview the Vila Health scenario and complete the int.docxIntroductionReview the Vila Health scenario and complete the int.docx
IntroductionReview the Vila Health scenario and complete the int.docx
 
In studying Social Problems, sociologists (and historians) identify .docx
In studying Social Problems, sociologists (and historians) identify .docxIn studying Social Problems, sociologists (and historians) identify .docx
In studying Social Problems, sociologists (and historians) identify .docx
 
I need help correcting an integrative review.This was the profes.docx
I need help correcting an integrative review.This was the profes.docxI need help correcting an integrative review.This was the profes.docx
I need help correcting an integrative review.This was the profes.docx
 

Recently uploaded

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 

Recently uploaded (20)

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 

Assignment 3 Team Project Outline(Complete by Sunday, Nov. .docx

  • 1. Assignment 3: Team Project Outline (Complete by Sunday, Nov. 20) Due No Due Date Points 50 Submitting a file upload Start Assignment This assignment is due in this Module. This assignment aligns with Learning Outcomes 1, 2 and 4. Directions For this project you will work in a collaborative team to identify a political issue. Your team will then research, analyze, develop, and defend a position within that issue. The end product will be a paper that describes the issue and supports your team’s position. Remember, your goal is to select an issue, take a position, and develop a paper to support that position. Political issues could include discussions on healthcare, immigration reform, American’s marijuana debate, tax reform, religious freedom act, LGBTQ rights, and,
  • 2. etc. If you are unsure of what constitutes a valid political issue, please check with the instructor for guidance in this area. The outline should minimally contain the following sections: 1. Brief introduction and thesis statement 2. Overview of the issue (research including at least 5 references) 3. The team's position 11/15/22, 11:25 PM Page 1 of 4 Team Project Outline Rubric Criteria Ratings Pts 25 pts 4. Rationale for your position (research including at least 5 references) 5. Summary, conclusions and recommendations Submission A designated member will be the one who submits this assignment. This assignment
  • 3. requires a file upload submission. After you have reviewed the assignment instructions and rubric, as applicable, complete your submission by selecting the Submit Assignment button next to the assignment title. Browse for your file and remember to select the Submit Assignment button below the file to complete your submission. Review the confirmation annotation that presents after submission. Grading This assignment is worth 50 points toward your final grade and will be graded using the Project Outline Rubric. Please use it as a guide toward successful completion of this assignment. (1) Organization 25 to >22.0 pts Exemplary The outline is logically organized with a
  • 4. well-written introduction, thesis statement and conclusion. 22 to >19.0 pts Meets Expectations The outline is logically organized with a well-written introduction, thesis statement 19 to >13.0 pts Developing The outline is logically organized with a
  • 5. well-written introduction, thesis statement and conclusion. 13 to >0 pts Beginning The outline is loosely organized with an introduction, thesis statement, and 11/15/22, 11:25 PM Page 2 of 4 15 pts 10 pts
  • 6. and conclusion. One of these requires improvement. One or more of the introduction, thesis statement, and/or conclusion require improvement. conclusion. The introduction, thesis statement, and/or conclusion
  • 7. require much improvement. Topic Overview 15 to >13.0 pts Exemplary Provides an overview that comprehensively describes the selected political issue. The description is clearly supported with the number of scholarly sources noted. 13 to >11.0 pts
  • 8. Meets Expectations Provides an overview that comprehensively describes the selected political issue. The description is clearly supported with fewer than the number of scholarly sources noted and is slightly underdeveloped. 11 to >8.0 pts
  • 9. Developing Provides an overview that comprehensively describes the selected political issue. The description is somewhat supported with at least one scholarly source and is underdeveloped. 8 to >0 pts Beginning Few sources cited can be
  • 10. considered appropriate and from accepted sources. Attempts to provides an overview of the selected political issue. However, the description is not supported with scholarly sources and is significantly underdeveloped. Quality of Work 10 to >8.0 pts
  • 11. Exemplary Quality of writing is exceptional with no spelling, grammar, or mechanical 8 to >7.0 pts Meets Expectations Quality of writing is good with minor spelling, grammar, or mechanical 7 to >5.0 pts
  • 12. Developing Quality of writing is acceptable with minor spelling, grammar, or mechanical errors that 5 to >0 pts Beginning Quality of writing is unacceptable with many spelling, grammar, or mechanical errors that 11/15/22, 11:25 PM
  • 13. Page 3 of 4 Total Points: 50 errors. Writing is organized and well developed. errors that do not interfere with comprehension. usually do not interfere with comprehension. significantly interfere with comprehension. 11/15/22, 11:25 PM Page 4 of 4
  • 14. library(MASS) data("Boston") colnames(Boston) model_full <- lm(medv~., data = Boston) summary(model_full) model_1 <- lm(medv~crim+zn, data = Boston) # Manually select summary(model_full) summary(model_1) AIC(model_full); BIC(model_full) AIC(model_1); BIC(model_1)
  • 15. # Best Subset install.packages('leaps') library(leaps) # regsubsets only takes data frame as input subset_result <- regsubsets(medv~., data=Boston, nbest=2, nvmax = 14) summary(subset_result) plot(subset_result) # Backward Elimination nullmodel <- lm(medv~1, data=Boston) summary(model_full) # has fitted: model_full <- lm(medv~., data=Boston) model_step_b <- step(model_full, direction='backward')
  • 16. # Forward Selection model_step_f <- step(nullmodel, scope=list(lower=nullmodel, upper=model_full), direction='forward') # Stepwise Selection model_step_s <- step(nullmodel, scope = list(lower=nullmodel, upper=model_full), direction='both') Instruction of Lab 8 EBTM 350, Fall 2022, Professor: Xiaorui Zhu, Ph.D. Purpose: I hope that by doing this lab, you will get a taste of how to prepare your final project, as well as (1) practice your R coding; (2) get an idea of the entire process (Exploratory Data Analysis, regression modeling, data mining, interpreting results, etc.); and
  • 17. (3) realize that data understanding and result interpretation are not trivial tasks, and they are extremely important in business projects. Submit a Word file with all the following sections and results well organized. Requirements: 1. (5 points) Write an interesting story in the first section (Background or Introduction). In my class case, we want to forecast the median home value in the Boston area (or the wine-tasting preference), but I would refrain from offering you a specific context. I require you to think about in what situations, you may need to forecast the median home price for your business/clients and write down your story. a. For example, you can pretend you are a real estate buyer agent. Your decision is to give a recommendation for your client (buyer) to make a reasonable offer for the house they are interested in. So, you want to predict the median house price in a certain area with attributes so that your clients can use it as a reference to make the offer. b. Another simple example: From an analyst’s perspective, I want to understand how these predictors are associated with the median home price. What are those major
  • 18. contributors? So, when I want to buy a house, I should focus on these important attributes because they highly affect the market value of the house. c. Yours. 2. (10 points) Exploratory Analyses & Visualization. a. (2 pts) Explore the data (use plots, summary statistics, etc.) and provide some findings and your interpretation. b. (2 pts) Explore the response variable: median house value (use visualization tools, check outliers, etc.). c. (2 pts) Explore some of the predictors that you believe are important (use visualization tools, check outliers, etc.). d. (4 pts) Explore the associations between predictors and your response variable visually and quantitatively. 3. (20 points) Modeling and Interpretation of your results. a. (6 pts) Use multiple linear regression models we just learned. You may need to explore models with different predictors and find the best one.
  • 19. b. (6 pts) Use at least one variable selection method we learned this week (Best subset selection, Forward, backward, stepwise selection) to find the best model. c. (8 pts) Interpret the fitted model from multiple perspectives: find these significant predictors by t-test (2 pts), interpret the coefficient estimates (4 pts), and check whether the whole model is significant (F- test) (2 pts). 4. (5 points) Summary or Conclusion: a. (2 pts) Compare all the models you obtained (Use information criteria AIC/BIC, and goodness-of-fit R2 to support your conclusion). b. (2 pts) Provide a suggestion of the best model. c. (1 pts) Conclude your findings: what predictors are useful, what is the performance of your model etc. To: Mr. Zhu, Director of Investment Analysis From: Lexi Cioffi, Investment Analysis Intern Date: November 11, 2022 Subject: Boston Housing Exploratory Analysis Introduction As an intern at the Investment Analysis Group, I have prepared
  • 20. this evaluative report in order to make recommendations for investors on which residential properties are the best to invest in within the Boston area. Recently, our new clients asked our firm to determine the variables that most significantly influence the median home value in Boston in order to make a recommendation of which residential properties within the area are the best to invest in. It is important for our clients to know what variables significantly influence median home value in order to make wiser investments and hopefully increase their return on investment. There are 14 values that I will use throughout my analysis: CRIM (per capita crime rate by town), ZN (proportion of residential land zoned for lots over 25,000 sq. ft.), INDUS (proportion of non- retail business acres per town), CHAS (Charles River dummy variable; 1 if tract bounds river; 0 otherwise), NOX (nitric oxides concentration; parts per 10 million), RM (average number of rooms per dwelling), AGE (proportion of owner-occupied units built prior to 1940), DIS (weighted distances to five Boston employment centers), RAD (index of accessibility to radial highways), TAX (full-value property- tax rate per $10,000), PTRATIO (pupil-teacher ratio by town), B (1000(Bk-0.63)^2 where Bk is the proportion of blacks by town), LSTAT (% lower status of the population), and MEDV (median value of owner-occupied homes in $1000’s). Our clients would like us to consider all of the variables in our evaluation, and then present to them the most significant as well as the least significant variables that play a role in predicting the median home value within the Boston area. Exploratory Analyses and Visualization
  • 21. Before conducting a full linear regression analysis, I began by exploring the Boston Housing Data using plots and summary statistics. Using the R code summary(Boston) I was able to retrieve summary statistics on each of the 14 variables. For a more specific description of the quantities that I retrieved, please reference Figure 1. Figure 1. Summary statistics of the Boston Housing Data, providing values of minimum, maximum, mean, median, and interquartile range for each of the 14 variables. After evaluating the summary data for each of the 14 variables, I noticed that there was a significant range of values for the majority of the variables being examined. This extent of variation confirms that a model is absolutely necessary in order to best capture all of the data as well as to predict which variables have an influence on the median home value.
  • 22. Evaluating Predictor Variables I then decided to investigate individual variables that I felt would hold a greater influence on the median home value in Boston, as well as those that I felt are the most relevant when evaluating a residential property investment. The three variables that I chose to investigate were: crim, age, and tax. Figure 2. Histogram of the per capita crime rate by town in the Boston area. Figure 3. Histogram of the proportion of owner-occupied units built prior to 1940.
  • 23. Figure 4. Histogram of the full-value property-tax per $10,000. I created a histogram for each of the three determined variables using the following R code: hist(Boston$crim, c = “blue”), hist(Boston$age, c = “blue”), hist(Boston$tax, c = “blue”). From the three figures above, I was able to draw conclusions about the range of the variables as well as the relative frequencies of their values. Figure 1 demonstrates that the per capita crime rate per town most commonly falls between the range of 10 and 20, with very few responses having a value above 20. Figure 2 demonstrates that the proportion of owner-occupied units built prior to 1940 ranges from a proportion of 0 to a proportion of 100, with the most common segment being a proportion between 90 and 100. Finally, Figure 3 demonstrates that the full-value property-tax per $10,000 does not have any data that falls between the range of 500 and 650, and that the most frequent value fall between the range of 650 and 700. Evaluating the Response Variable When looking at the response variable, medv, I used a boxplot
  • 24. in order to spot potential outliers and gain a visual representation of the data using R code boxplot(Boston$medv). I also made a histogram with the median home value data in order to get a different visual representation of the data using R code hist(Boston$medv, c = “blue”). Figure 5. Boxplot of the median value of owner-occupied homes in the Boston area. Figure 6. Histogram of the median value of owner-occupied homes in the Boston area. Figures 5 above shows the extensive number of outliers that exist in the median value data. The median of the median value data is around 22, with values approximately
  • 25. 38 or greater being considered outliers in the data set. Figure 6 confirms these findings. The histogram of the median value of owner-occupied homes shows that the most frequent value is between 20-25, with the second most frequent between 15- 20. Predictor Variable Associations After evaluating the three predictor variables that I felt were most significant (crim, age, tax) and the response variable (medv) on their own, I evaluated the correlations that exist between those variables in order to gain additional insight into the data set. To explore the associations between these variables and the median home value, I decided to utilize scatterplots as well as calculate the correlation coefficient that exists between the two variables using R code plot(Boston$medv~Boston$crim, main="Scatterplot of medv Against crim", xlab = "crim", ylab = "medv", pch=16) and cor(Boston$medv, Boston$crim). Figure 7. Scatterplot of median value of owner- occupied homes and crime rate per capita by town. Correlation coefficient: -0.388
  • 26. Figure 8. Scatterplot of median value of owner- occupied homes and proportion of owner-occupied units built prior to 1940. Correlation coefficient: -0.378 Figure 9. Scatterplot of median value of owner- occupied homes and full-value property-tax rate per $10,000. Correlation coefficient: -0.469 Figure 7 represents the relationship between the median home value and the per capita crime rate per town. With a correlation coefficient of -0.388, the variables can be said to have a negative correlation. Having a negative correlation signifies that as the median home
  • 27. value decreases, the crime rate increases, or that as the median home value increases, the crime rate decreases. The scatterplot demonstrates the trend of negative correlation. Figure 8 represents the relationship between the median home value and the proportion of owner-occupied homes built prior to 1940. With a correlation of coefficient of -0.378, the variables can be said to have a negative correlation. The scatterplot demonstrates the relationship of negative correlation because as the age range increases, the median home value generally decreases. Figure 9 represents the relationship between the median home value and the full-value property-tax rate. With a correlation coefficient of -0.469, the variables can be said to have a negative correlation that is even stronger than that of the crim and age variables. The scatterplot demonstrates this negative correlation because as the property-tax rate increases, the median home value generally decreases. Modeling and Interpretation of Results In order to evaluate the significance that variables have in predicting the median home value in Boston, I began with a model that accounted for all 14 variables that I was given, using R code model_full <- lm(medv ~ ., data = Boston). One other model that I wanted to create was one only accounting for the three variables I felt were most impactful in investment selection: crim, age, and tax. I created this second model, called model1, using R code model_1 <- lm(medv ~ crim + age + tax, data = Boston). I received summary statistic information for both of these models using R code summary(model_full) and summary(model1).
  • 28. Figure 10. Summary statistics of the full variable model, including all 14 predictor variables within the Boston Housing Data. Estimate coefficients and their significance as well as the coefficient of determination for the model are included. Figure 11. Summary statistics of the model accounting for the previously selected crim, age, and tax variables within the Boston Housing Data. Estimate coefficients and their significance as well as the coefficient of determination for the model are included. Between these two models, it can be interpreted that the full model is better than model1. The coefficient of determination, R2, for the full model is 0.7406, whereas the R2 value for model1 is 0.2624. When evaluating models, the model with the highest coefficient of determination is the better fitted model.
  • 29. Because the model1 R2 value is so low, it is unlikely that the three selected predictor variables carry heavy significance in predicting the median home value, holding all other variables constant. Determining the Best Model With my three selected predictor variables producing the worse model, I decided to determine the best model by beginning with all 14 of the predictor variables in the Boston Housing Data. My initial goal was to find the best model that accounted for 3 of the predictor variables, holding all other predictor variables constant. To determine which 3 size model was the best determinant of median home value, I used R code bestsub <- regsubsets(medv ~., data=Boston, nbest=3, nvmax = 14). I then created a plot to visualize the predictor variables using R code plot(bestsub) Figure 12. A plot demonstrating the best subsets to create a size 3 model that best predicts the median home value in the Boston Housing Data. Upon examining the figure above, I determined that the best size 3 model, holding all other variables
  • 30. constant, accounts for the variables rm, ptratio, and lstat. On the chart, these variables appear first with the lowest associated BIC, and the lower the BIC, the better the model. The R code for this model is model_best <- lm(medv ~ rm + ptratio + lstat, data = Boston). Using R code summary(model_best) I determined that the coefficient of determination for this model is 0.6786, indicating that there is a better model, though my model_best was the best model that existed when accounting for only 3 of the predictor variables. In order to find the model that best predicts the Boston Housing Data, I first established a null model to which I could compare my best fitted model to using R code nullmodel <- lm(medv~1, data=Boston). In order to determine the best model, I decided to proceed with the backward selection method, using R code model_step_b <- step(model_full, scope=list(lower=nullmodel, upper=model_full), direction = ‘backward’). Figure 13. Data demonstrating the backward model selection method for the Boston Housing Data.
  • 31. After evaluating the backward selection method, I determined that the best model for predicting the median value of homes in the Boston area is one that includes all of the predictor variables except for the age and indus variables. In the backward selection method, it is shown that removing age and indus will provide the lowest AIC value. Because the lower the AIC, the better the model, those two variables are the only two which need to be removed in order to further decrease the AIC. On the other hand, the backward selection method tells us that the worst variables to eliminate from the model, in order, are: lstat, rm, and dis. This finding is relatively consistent with the model that I made above which included only the three best predictor variables to use in a model. This means that the model which best predicts the median home value can be established using R code: bestmodel <- lm(medv ~ . - indus - age, data = Boston) After running the best model, the coefficients for each of the included variables were as follows: intercept 36.341, crim -0.108, zn 0.046, chas 2.72, nox -17.378, rm 3.802, dis -1.49, rad 0.300, tax -0.012, ptratio - 0.947, black 0.009, lstat -0.523. An example interpretation of the coefficient of rm would be that 1 additional room in a home impacts the median home value by a factor of 3.802, holding all other variables constant. Within this model, the p values for each of the
  • 32. coefficients are less than 0.05, indicating that the findings are statistically significant. This means that I reject the null hypothesis that there is no association between the predictor variables and the response variable. Additionally, the p value of the f- test is also smaller than 0.05, meaning that at least one of the predictor variables has an impact on the response variable and does not have a coefficient of 0. Conclusion After concluding my analysis, I have determined that the following model is the most significant in determining the median home value in Boston: medv ~ . – indus – age. I believe that the predictor variables indus and age should not be included in a model to determine the median home value in Boston because they increase the value of the AIC. The model accounting for all of the response variables has an AIC value of 1589.6, whereas the model without the indus and age variables has a lower AIC value of 1587.7. Additionally, in the best model, the R2 value is 0.7406, meaning that 74.06% of the variation in the data is explained by the model. Additionally, we can tell our clients that when considering their future residential investments in the Boston area, the three most important variables to consider are rm, ptratio, and lstat – if they are only wishing to consider the three most important variables.