SlideShare uma empresa Scribd logo
1 de 15
4/24/20 Assignment 1 KS MY.docx P a g e | 1
Assignment 1
Tip: Read through this document in its entirety before you
begin.
The assignment is to conduct research based on the information
below, using R. After analyzing the data in R,
document the research and findings in a research paper in APA
7 format. Ask questions if you need to!
Topic: The Center for Disease Control and Prevention (CDC)
uses the social vulnerability index (SVI)
to evaluate the impact of disasters on communities, weighting
the damage with social factors in
the states of Kansas and Maryland (CDC, 2018a; CDC 2018b).
Problem: Each community requires independent evaluation to
identify the vulnerability of the area. Two of
the contributing factors for this analysis are minority status and
language limitations. The data
may lack credibility due to the fear of reprisal for persons that
fall into these categories.
Exploring the social and physical characteristics, excluding
these metrics can provide insight on
the overall impact on the SVI.
Question 1: What impact does the exclusion of the metrics that
represent minorities and language limited
individuals have on the predictability of the CDC’s SVI, based
on the 2018 data (CDC, 2018a;
CDC, 2018b)?
Question 2: Does the CDC’s SVI have key characteristics that
impact the preclude potential exclusion
without limiting the overall predictability of the SVI, based on
the 2018 data (CDC, 2018a; CDC,
2018b)?
Data:
• The data and data dictionaries are online.
o Center for Disease Control and Prevention. (2018a). Social
Vulnerability Index [data set].
https://svi.cdc.gov/Documents/Data/2018_SVI_Data/CSV/SVI2
018_US.csv
o Center for Disease Control and Prevention. (2018b). Social
Vulnerability Index [code book].
https://svi.cdc.gov/Documents/Data/2018_SVI_Data/SVI2018Do
cumentation.pdf
o Note: Your raw data must be this report in its original form.
Use the data dictionary to
understand the data.
• Create a subset of the data. Consider the metrics that are used
in creating the SVI. Use the data
dictionary to identify the state variable field, along with the
appropriate fields that represent the SVI
metrics, considering the research questions. The SVI index’s
variable name is RPL_THEMES, in
column 99.
o Socioeconomic
▪ Persons below the poverty estimate
▪ Civilian unemployed estimate
▪ Per capita income estimate
▪ Persons with no high school diploma
o Household and composition disability features
▪ Ages 65 and older
▪ Ages 17 and under
▪ Persons with a disability, over the age of 5
▪ Single-parent households
o Minority status and language limitations
▪ Persons with minority status
▪ Persons with no or minimal use of the English language
o Housing types and transportation
▪ Multi-unit dwellings (10 or more units)
https://svi.cdc.gov/Documents/Data/2018_SVI_Data/CSV/SVI2
018_US.csv
https://svi.cdc.gov/Documents/Data/2018_SVI_Data/SVI2018Do
cumentation.pdf
4/24/20 Assignment 1 KS MY.docx P a g e | 2
▪ Mobile homes
▪ Homes with more residents than a home is designed for
▪ Homes with no vehicle
▪ Group quarters or institutionalized quarters
Note: Do not use the columns that are follow-on calculations of
these columns. Variable names
preceded with “E_” are actual measures, while “M_” represents
the margin of error estimates. Do
not include the margin of error estimates at this time.
Considering the research questions, after
subsetting and excluding the variable that houses the STATE
field, there will be 13 columns with
relevant information for analysis. The state field can be utilized
in data exploration.
Data Cleaning:
• Only clean the elements of the data that are inaccurately
represented, such as missing values and data
types.
• Do not remove missing values during cleaning. If missing
values need to be removed for analysis
method, do it during the preparation for analysis.
• When changing data values or types, ensure that you validate
that the change occurred and the
change is what was expected.
Analyze:
• Conduct two types of analysis: exploratory data analysis and a
random forest model. You will move
through the sub-stages of Analyze two times; profile, prepare,
and apply is required for each method of
analysis in your program. It is consolidated in your research
paper. Make sure that your analyses align
with the research questions.**
• During exploratory data analysis, exclude visualizations in
your final program or research paper that do
not serve a purpose toward the objective of the research or
represent meaningful information. Just
remember, the relationships that do not exist in the data are
sometimes as significant as the
relationships that do exist.
• Profile
o Define your plan for all analyses.
o Your plan for the random forest model will include splitting
the data after seeding it so that
training and testing evaluations can be conducted; additionally,
you will exclude missing values
from the model.
• Prepare
o Carry out actions on the data that are necessary to prepare the
data for the analyses.
• Apply (or Analyze)
o When carrying out the random forest modeling, it may be
imperative to understand how much
time your analyses may take.
o Ensure that you analyze the results and understand what the
different outcomes of the model
represent. Provide interpretations of the overall model that is
trained, how the trained model
performs with the test data, and what features are most
important for the explained variance.
Results, Impact of the Results:
• Ensure that all analyses, visual or otherwise included in the
final version of the program, include
interpretations of what these analyses indicate.
• Make sure that you do not speculate! Use evidence to support
any assertions that you make.
Future Recommendations:
• You must also include recommendations for future analysis.
An example might look something like this:
o An opportunity for further research, based on gaps found in
the random forest modeling, is to
look at the ability to tune the parameters further, to improve the
outcome.
4/24/20 Assignment 1 KS MY.docx P a g e | 3
o Additionally, an opportunity for future research is exploration
modeling to determine what other
variables, when eliminated, have little or no impact on the
ability to predict the SVI based on the
supporting characteristics in the data.
• You will base your recommendations on your findings in the
analysis you conduct.
Bonus challenge:
Create a random forest model for each state you were assigned.
Is there a difference in the models’ results?
What does that result mean in terms of the data? Make sure that
you do not speculate! Use evidence to
support any assertions that you make.
Required files to submit:
1) Research paper in APA 7 format; MS Word document file
type
2) R Script; final version
Good to know:
• When submitting in Blackboard, you may receive an error,
because the R file type is not recognized.
That is okay. It is only indicating that SafeAssign cannot
evaluate that part of your submission.
o The research paper will be written in a professional writing
style, following APA 7 student paper
format; you can use the student paper template.
o The document shall be 3-5 pages or at least 800 words. The
page count does include the cover
page or reference page.
o Ensure that every reference in your reference list is also cited
in the text. Do not forget to cite
and reference the source of the data.
• When developing your research paper, you may modify the
topic, problem, and research questions.
However, the minimum requirements for the method of analysis
cannot be altered.
• Ensure that you make the research yours and complete this
assignment independently.
• There are several different versions of this assignment. If you
complete a version of this assignment
that is not available to you in Blackboard, you will violate your
pledge.
• If you are concerned about how long the model is taking to
run, you have a few options.
o With the library GuessCompx, you can use the function
CompEst() to evaluate the complexity
and time it will take to process the function. Some things have
to be done to the setup to use
this methodology, though.
▪ Example:
If the original model is called
model <-
train(outcome~.,data=d,subset=trainer,importance=T,method=”r
f”)
You would rewrite this as
f <- function(d)
train(outcome~.,data=d,subset=trainer,importance=F,method=”r
f”)
CompEst(d=d,f=f,random.sample=F)
o With the library doParallel, you can use the functions
makePSOCKcluster() and
registerDoParallel() you can run models in parallel, to improve
performance.
▪ Prior to processing the model, use the following as an
example, use help or Google to
learn more. This will maximize the processor power.
cl <- makePSOCKcluster(4) # the value is the number of
processor cores in your device
registerDoParallel(cl)
model <-
train(outcome~.,data=d,subset=trainer,importance=T,method=”r
f”,allowParallel=T)
stopImplicitCluster()
registerDoSEQ()
Running head: SOCIAL VULNERABILITY INDEX
1
SOCIAL VULNERABILITY INDEX
3
SOCIAL VULNERABILITY INDEX.
Rupesh Pasam
Analyzing & Visualizing Data (ITS-530-05)
University of the Cumberlands
Dr. Kathy McClure
May 17, 2020
I. Exclusion of Metrics in Predicting Social Vulnerability Index
· Makes it hard for the CDC to calculate the level of aid
required
· The subjects being studied may not give enough detail on
language limitation
· Assessment of the vulnerability of a community in case of a
disaster requires more well-defined metrics.
II. Statement of the Problem
Every community needs independent evaluation to find out the
vulnerability of the said area. Two of the contributing factors
for this analysis are language limitations and minority status.
The information may lack credibility because of the fear of
reprisal for individuals that fall into these categories.
Exploration of the physical and social characteristics, excluding
these metrics, can offer insights on the general impact of the
Social Vulnerability Index.
III. Research Methodology
The methods utilized to gather information for addressing the
research problem and the questions that stem from it will be
qualitative. The reports released by the CDC in the year 2018
will play an important role in helping the researcher get the
right information.
IV. Results
The results of the study will be achieved by coding and tallying.
The researcher will source data from different reports and
attempt to find similarities in what challenges the exclusion of
metrics pose in the determination of community SVIs.
V. Impact of the Results
The results will be helpful in assisting future
researchers/stakeholders within and without the CDC to use
different skills so as not to exclude important data set aspects.
VI. Recommendations for Future Analysis
The recommendations that this research will propose to revolve
around using the most significant possible samples and the
blinding of respondents. In this way, it will be simpler to ward
off the possibility of respondent bias. In addition to that,
statistical validity will also be guaranteed.
VII. Conclusion
The conclusion section of the paper will summarize the content
of the entire paper from the introductory section to the
recommendations section.
There are many ways to misrepresent data through
visualizations of data. There are a variety of websites that exist
solely to put these types of graphics on display, to discredit
otherwise somewhat credible sources. Leo (2019), an employee
of The Economist, wrote an article about the mistakes found
within the magazine she works for. Sosulski (2016) wrote an
entry in her blog that highlights misrepresentations, as well.
After reading these two articles, create two visualizations in R
that show identical data. In one, create a subtle
misrepresentation of the data. In the other remove the
misrepresentation. Add static images of the two visualizations
to your post. Provide a description of the data and how the
visualizations were created in R.
When adding images to the discussion board, use the insert
image icon.
Adding Images to the discussion board
References
Leo, S. (2019, May 27). Mistakes, we've drawn a few: Learning
from our errors in data visualization. The Economist.
https://medium.economist.com/mistakes-weve-drawn-a-few-
8cdd8a42d368
Sosulski, K. (2016, January). Top 5 visualization errors [Blog].
http://www.kristensosulski.com/2016/01/top-5-data-
visualization-errors/
Considerations for every forum:
Remember your initial post on the main topic should be posted
by Wednesday 11:59 PM (EST). Your 2 following posts should
be commenting on your classmates’ post by Sunday 11:59 PM
(EST). You should end the week with 3 total discussion posts.
Your initial post should include your references, thoroughly
present your ideas, and provide evidence to support those ideas.
A quality peer response post is more than stating, “I agree with
you.” State why you agree with your classmate’s post. The
purpose of the forum is generate discussion. You could post
some examples or find a related topic on the Internet or
University’s library and comment on it in the discussion post.
No credit will be earned for posts that are disrespectful or not
on the topic of the forum.
Ensure you read all of this information for the first assignment.
1) The assignment instructions are in a separate file named
Assignment 1 Instructions.
2) When you finish your assignment, submit the research paper
and programmed R Script here. You are not done yet!!
3) After submitting assignment 1 here, open the Assignment 1
Peer Review. After you enter, follow the prompts. The system
will ask that you copy and paste parts of your research paper
into Blackboard.
For the assignment due next Thursday, you will
revisit Assignment 1 Peer Review. When you enter next week
you will not be prompted to answer questions about your
research. You will be prompted to evaluate a peer's responses to
the prompts. If you do not submit your responses this week, you
will not be able to provide a peer review next week, forfeiting
the points for that assignment.
This method will ensure that anonymity is maintained when
conducting peer reviews. Ensure you allot enough time to
submit the assignment here and answer the questions for
assignment 1 in Assignment 1 Peer Review.
Assignment 1 Peer Review questions:
· Question 1
What are your research questions? Copy exactly what is written
in your research paper.
Status: Not Completed
· Question 2
What was your plan for analysis? Copy exactly what is written
in your research paper.
Status: Not Completed
· Question 3
What are the results of your analysis? Copy exactly what is
written in your research paper.
Status: Not Completed
· Question 4
What is the impact of the results and the conclusion of the
research paper? Copy exactly what is written in your research
paper.
Status: Not Completed
· Question 5
Provide the references used in your research. Ensure that when
you add them to the response that they are in APA
7, represented exactly as they appear in your research paper.
Status: Not Completed

Mais conteúdo relacionado

Semelhante a 42420 Assignment 1 KS MY.docx P a g e 1 Assignment 1 .docx

MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docx
MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docxMBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docx
MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docxalfredacavx97
 
RES814 U1 Individual Project
RES814 U1 Individual ProjectRES814 U1 Individual Project
RES814 U1 Individual ProjectThienSi Le
 
Data Processing DOH Workshop.pptx
Data Processing DOH Workshop.pptxData Processing DOH Workshop.pptx
Data Processing DOH Workshop.pptxcharlslabarda
 
Math 1342 signature assignment spring 2022
Math 1342 signature assignment   spring 2022Math 1342 signature assignment   spring 2022
Math 1342 signature assignment spring 2022AbrahamVillalpando1
 
Predictive Analytics in Practice
Predictive Analytics in PracticePredictive Analytics in Practice
Predictive Analytics in PracticeHobsons
 
Refresher in statistics and analysis skill
Refresher in statistics and analysis skillRefresher in statistics and analysis skill
Refresher in statistics and analysis skillSantam Chakraborty
 
toolkit13_sec9.pdf
toolkit13_sec9.pdftoolkit13_sec9.pdf
toolkit13_sec9.pdfAfrim Alili
 
ASSIGNMENT 2 - Research Proposal Weighting 30 tow.docx
ASSIGNMENT 2 - Research Proposal    Weighting 30 tow.docxASSIGNMENT 2 - Research Proposal    Weighting 30 tow.docx
ASSIGNMENT 2 - Research Proposal Weighting 30 tow.docxsherni1
 
Mba ii rm unit-4.1 data analysis & presentation a
Mba ii rm unit-4.1 data analysis & presentation aMba ii rm unit-4.1 data analysis & presentation a
Mba ii rm unit-4.1 data analysis & presentation aRai University
 
QSO 510 Final Project Guidelines and Rubric Overview .docx
QSO 510 Final Project Guidelines and Rubric  Overview .docxQSO 510 Final Project Guidelines and Rubric  Overview .docx
QSO 510 Final Project Guidelines and Rubric Overview .docxmakdul
 
Assessment instructions 2020.docx
Assessment instructions 2020.docxAssessment instructions 2020.docx
Assessment instructions 2020.docxwarisha22
 

Semelhante a 42420 Assignment 1 KS MY.docx P a g e 1 Assignment 1 .docx (13)

MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docx
MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docxMBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docx
MBA 5652Unit ILiterature ReviewInstructionsWithin this cou.docx
 
RES814 U1 Individual Project
RES814 U1 Individual ProjectRES814 U1 Individual Project
RES814 U1 Individual Project
 
UNIT 4.pptx
UNIT 4.pptxUNIT 4.pptx
UNIT 4.pptx
 
Data Processing DOH Workshop.pptx
Data Processing DOH Workshop.pptxData Processing DOH Workshop.pptx
Data Processing DOH Workshop.pptx
 
Math 1342 signature assignment spring 2022
Math 1342 signature assignment   spring 2022Math 1342 signature assignment   spring 2022
Math 1342 signature assignment spring 2022
 
Predictive Analytics in Practice
Predictive Analytics in PracticePredictive Analytics in Practice
Predictive Analytics in Practice
 
Refresher in statistics and analysis skill
Refresher in statistics and analysis skillRefresher in statistics and analysis skill
Refresher in statistics and analysis skill
 
toolkit13_sec9.pdf
toolkit13_sec9.pdftoolkit13_sec9.pdf
toolkit13_sec9.pdf
 
ASSIGNMENT 2 - Research Proposal Weighting 30 tow.docx
ASSIGNMENT 2 - Research Proposal    Weighting 30 tow.docxASSIGNMENT 2 - Research Proposal    Weighting 30 tow.docx
ASSIGNMENT 2 - Research Proposal Weighting 30 tow.docx
 
Predictive modeling
Predictive modelingPredictive modeling
Predictive modeling
 
Mba ii rm unit-4.1 data analysis & presentation a
Mba ii rm unit-4.1 data analysis & presentation aMba ii rm unit-4.1 data analysis & presentation a
Mba ii rm unit-4.1 data analysis & presentation a
 
QSO 510 Final Project Guidelines and Rubric Overview .docx
QSO 510 Final Project Guidelines and Rubric  Overview .docxQSO 510 Final Project Guidelines and Rubric  Overview .docx
QSO 510 Final Project Guidelines and Rubric Overview .docx
 
Assessment instructions 2020.docx
Assessment instructions 2020.docxAssessment instructions 2020.docx
Assessment instructions 2020.docx
 

Mais de priestmanmable

9©iStockphotoThinkstockPlanning for Material and Reso.docx
9©iStockphotoThinkstockPlanning for Material and Reso.docx9©iStockphotoThinkstockPlanning for Material and Reso.docx
9©iStockphotoThinkstockPlanning for Material and Reso.docxpriestmanmable
 
a 12 page paper on how individuals of color would be a more dominant.docx
a 12 page paper on how individuals of color would be a more dominant.docxa 12 page paper on how individuals of color would be a more dominant.docx
a 12 page paper on how individuals of color would be a more dominant.docxpriestmanmable
 
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docxpriestmanmable
 
92 Academic Journal Article Critique  Help with Journal Ar.docx
92 Academic Journal Article Critique  Help with Journal Ar.docx92 Academic Journal Article Critique  Help with Journal Ar.docx
92 Academic Journal Article Critique  Help with Journal Ar.docxpriestmanmable
 
A ) Society perspective90 year old female, Mrs. Ruth, from h.docx
A ) Society perspective90 year old female, Mrs. Ruth, from h.docxA ) Society perspective90 year old female, Mrs. Ruth, from h.docx
A ) Society perspective90 year old female, Mrs. Ruth, from h.docxpriestmanmable
 
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docxpriestmanmable
 
9 AssignmentAssignment Typologies of Sexual AssaultsT.docx
9 AssignmentAssignment Typologies of Sexual AssaultsT.docx9 AssignmentAssignment Typologies of Sexual AssaultsT.docx
9 AssignmentAssignment Typologies of Sexual AssaultsT.docxpriestmanmable
 
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docxpriestmanmable
 
900 BritishJournalofNursing,2013,Vol22,No15©2.docx
900 BritishJournalofNursing,2013,Vol22,No15©2.docx900 BritishJournalofNursing,2013,Vol22,No15©2.docx
900 BritishJournalofNursing,2013,Vol22,No15©2.docxpriestmanmable
 
9 Augustine Confessions (selections) Augustine of Hi.docx
9 Augustine Confessions (selections) Augustine of Hi.docx9 Augustine Confessions (selections) Augustine of Hi.docx
9 Augustine Confessions (selections) Augustine of Hi.docxpriestmanmable
 
8.3 Intercultural CommunicationLearning Objectives1. Define in.docx
8.3 Intercultural CommunicationLearning Objectives1. Define in.docx8.3 Intercultural CommunicationLearning Objectives1. Define in.docx
8.3 Intercultural CommunicationLearning Objectives1. Define in.docxpriestmanmable
 
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docxpriestmanmable
 
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docxpriestmanmable
 
800 Words 42-year-old man presents to ED with 2-day history .docx
800 Words 42-year-old man presents to ED with 2-day history .docx800 Words 42-year-old man presents to ED with 2-day history .docx
800 Words 42-year-old man presents to ED with 2-day history .docxpriestmanmable
 
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docxpriestmanmable
 
8.0 RESEARCH METHODS These guidelines address postgr.docx
8.0  RESEARCH METHODS  These guidelines address postgr.docx8.0  RESEARCH METHODS  These guidelines address postgr.docx
8.0 RESEARCH METHODS These guidelines address postgr.docxpriestmanmable
 
95People of AppalachianHeritageChapter 5KATHLEEN.docx
95People of AppalachianHeritageChapter 5KATHLEEN.docx95People of AppalachianHeritageChapter 5KATHLEEN.docx
95People of AppalachianHeritageChapter 5KATHLEEN.docxpriestmanmable
 
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docxpriestmanmable
 
8-10 slide Powerpoint The example company is Tesla.Instructions.docx
8-10 slide Powerpoint The example company is Tesla.Instructions.docx8-10 slide Powerpoint The example company is Tesla.Instructions.docx
8-10 slide Powerpoint The example company is Tesla.Instructions.docxpriestmanmable
 
8Network Security April 2020FEATUREAre your IT staf.docx
8Network Security  April 2020FEATUREAre your IT staf.docx8Network Security  April 2020FEATUREAre your IT staf.docx
8Network Security April 2020FEATUREAre your IT staf.docxpriestmanmable
 

Mais de priestmanmable (20)

9©iStockphotoThinkstockPlanning for Material and Reso.docx
9©iStockphotoThinkstockPlanning for Material and Reso.docx9©iStockphotoThinkstockPlanning for Material and Reso.docx
9©iStockphotoThinkstockPlanning for Material and Reso.docx
 
a 12 page paper on how individuals of color would be a more dominant.docx
a 12 page paper on how individuals of color would be a more dominant.docxa 12 page paper on how individuals of color would be a more dominant.docx
a 12 page paper on how individuals of color would be a more dominant.docx
 
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx
978-1-5386-6589-318$31.00 ©2018 IEEE COSO Framework for .docx
 
92 Academic Journal Article Critique  Help with Journal Ar.docx
92 Academic Journal Article Critique  Help with Journal Ar.docx92 Academic Journal Article Critique  Help with Journal Ar.docx
92 Academic Journal Article Critique  Help with Journal Ar.docx
 
A ) Society perspective90 year old female, Mrs. Ruth, from h.docx
A ) Society perspective90 year old female, Mrs. Ruth, from h.docxA ) Society perspective90 year old female, Mrs. Ruth, from h.docx
A ) Society perspective90 year old female, Mrs. Ruth, from h.docx
 
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx
9 dissuasion question Bartol, C. R., & Bartol, A. M. (2017)..docx
 
9 AssignmentAssignment Typologies of Sexual AssaultsT.docx
9 AssignmentAssignment Typologies of Sexual AssaultsT.docx9 AssignmentAssignment Typologies of Sexual AssaultsT.docx
9 AssignmentAssignment Typologies of Sexual AssaultsT.docx
 
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx
9 0 0 0 09 7 8 0 1 3 4 4 7 7 4 0 4ISBN-13 978-0-13-44.docx
 
900 BritishJournalofNursing,2013,Vol22,No15©2.docx
900 BritishJournalofNursing,2013,Vol22,No15©2.docx900 BritishJournalofNursing,2013,Vol22,No15©2.docx
900 BritishJournalofNursing,2013,Vol22,No15©2.docx
 
9 Augustine Confessions (selections) Augustine of Hi.docx
9 Augustine Confessions (selections) Augustine of Hi.docx9 Augustine Confessions (selections) Augustine of Hi.docx
9 Augustine Confessions (selections) Augustine of Hi.docx
 
8.3 Intercultural CommunicationLearning Objectives1. Define in.docx
8.3 Intercultural CommunicationLearning Objectives1. Define in.docx8.3 Intercultural CommunicationLearning Objectives1. Define in.docx
8.3 Intercultural CommunicationLearning Objectives1. Define in.docx
 
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx
8413 906 AMLife in a Toxic Country - NYTimes.comPage 1 .docx
 
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx
8. A 2 x 2 Experimental Design - Quality and Economy (x1 and x2.docx
 
800 Words 42-year-old man presents to ED with 2-day history .docx
800 Words 42-year-old man presents to ED with 2-day history .docx800 Words 42-year-old man presents to ED with 2-day history .docx
800 Words 42-year-old man presents to ED with 2-day history .docx
 
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx
8.1 What Is Corporate StrategyLO 8-1Define corporate strategy.docx
 
8.0 RESEARCH METHODS These guidelines address postgr.docx
8.0  RESEARCH METHODS  These guidelines address postgr.docx8.0  RESEARCH METHODS  These guidelines address postgr.docx
8.0 RESEARCH METHODS These guidelines address postgr.docx
 
95People of AppalachianHeritageChapter 5KATHLEEN.docx
95People of AppalachianHeritageChapter 5KATHLEEN.docx95People of AppalachianHeritageChapter 5KATHLEEN.docx
95People of AppalachianHeritageChapter 5KATHLEEN.docx
 
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx
9 781292 041452ISBN 978-1-29204-145-2Forensic Science.docx
 
8-10 slide Powerpoint The example company is Tesla.Instructions.docx
8-10 slide Powerpoint The example company is Tesla.Instructions.docx8-10 slide Powerpoint The example company is Tesla.Instructions.docx
8-10 slide Powerpoint The example company is Tesla.Instructions.docx
 
8Network Security April 2020FEATUREAre your IT staf.docx
8Network Security  April 2020FEATUREAre your IT staf.docx8Network Security  April 2020FEATUREAre your IT staf.docx
8Network Security April 2020FEATUREAre your IT staf.docx
 

Último

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 

Último (20)

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 

42420 Assignment 1 KS MY.docx P a g e 1 Assignment 1 .docx

  • 1. 4/24/20 Assignment 1 KS MY.docx P a g e | 1 Assignment 1 Tip: Read through this document in its entirety before you begin. The assignment is to conduct research based on the information below, using R. After analyzing the data in R, document the research and findings in a research paper in APA 7 format. Ask questions if you need to! Topic: The Center for Disease Control and Prevention (CDC) uses the social vulnerability index (SVI) to evaluate the impact of disasters on communities, weighting the damage with social factors in the states of Kansas and Maryland (CDC, 2018a; CDC 2018b). Problem: Each community requires independent evaluation to identify the vulnerability of the area. Two of the contributing factors for this analysis are minority status and language limitations. The data may lack credibility due to the fear of reprisal for persons that fall into these categories. Exploring the social and physical characteristics, excluding
  • 2. these metrics can provide insight on the overall impact on the SVI. Question 1: What impact does the exclusion of the metrics that represent minorities and language limited individuals have on the predictability of the CDC’s SVI, based on the 2018 data (CDC, 2018a; CDC, 2018b)? Question 2: Does the CDC’s SVI have key characteristics that impact the preclude potential exclusion without limiting the overall predictability of the SVI, based on the 2018 data (CDC, 2018a; CDC, 2018b)? Data: • The data and data dictionaries are online. o Center for Disease Control and Prevention. (2018a). Social Vulnerability Index [data set]. https://svi.cdc.gov/Documents/Data/2018_SVI_Data/CSV/SVI2 018_US.csv o Center for Disease Control and Prevention. (2018b). Social Vulnerability Index [code book]. https://svi.cdc.gov/Documents/Data/2018_SVI_Data/SVI2018Do cumentation.pdf
  • 3. o Note: Your raw data must be this report in its original form. Use the data dictionary to understand the data. • Create a subset of the data. Consider the metrics that are used in creating the SVI. Use the data dictionary to identify the state variable field, along with the appropriate fields that represent the SVI metrics, considering the research questions. The SVI index’s variable name is RPL_THEMES, in column 99. o Socioeconomic ▪ Persons below the poverty estimate ▪ Civilian unemployed estimate ▪ Per capita income estimate ▪ Persons with no high school diploma o Household and composition disability features ▪ Ages 65 and older ▪ Ages 17 and under ▪ Persons with a disability, over the age of 5 ▪ Single-parent households
  • 4. o Minority status and language limitations ▪ Persons with minority status ▪ Persons with no or minimal use of the English language o Housing types and transportation ▪ Multi-unit dwellings (10 or more units) https://svi.cdc.gov/Documents/Data/2018_SVI_Data/CSV/SVI2 018_US.csv https://svi.cdc.gov/Documents/Data/2018_SVI_Data/SVI2018Do cumentation.pdf 4/24/20 Assignment 1 KS MY.docx P a g e | 2 ▪ Mobile homes ▪ Homes with more residents than a home is designed for ▪ Homes with no vehicle ▪ Group quarters or institutionalized quarters Note: Do not use the columns that are follow-on calculations of these columns. Variable names preceded with “E_” are actual measures, while “M_” represents the margin of error estimates. Do not include the margin of error estimates at this time. Considering the research questions, after subsetting and excluding the variable that houses the STATE
  • 5. field, there will be 13 columns with relevant information for analysis. The state field can be utilized in data exploration. Data Cleaning: • Only clean the elements of the data that are inaccurately represented, such as missing values and data types. • Do not remove missing values during cleaning. If missing values need to be removed for analysis method, do it during the preparation for analysis. • When changing data values or types, ensure that you validate that the change occurred and the change is what was expected. Analyze: • Conduct two types of analysis: exploratory data analysis and a random forest model. You will move through the sub-stages of Analyze two times; profile, prepare, and apply is required for each method of analysis in your program. It is consolidated in your research paper. Make sure that your analyses align with the research questions.** • During exploratory data analysis, exclude visualizations in
  • 6. your final program or research paper that do not serve a purpose toward the objective of the research or represent meaningful information. Just remember, the relationships that do not exist in the data are sometimes as significant as the relationships that do exist. • Profile o Define your plan for all analyses. o Your plan for the random forest model will include splitting the data after seeding it so that training and testing evaluations can be conducted; additionally, you will exclude missing values from the model. • Prepare o Carry out actions on the data that are necessary to prepare the data for the analyses. • Apply (or Analyze) o When carrying out the random forest modeling, it may be imperative to understand how much time your analyses may take. o Ensure that you analyze the results and understand what the different outcomes of the model
  • 7. represent. Provide interpretations of the overall model that is trained, how the trained model performs with the test data, and what features are most important for the explained variance. Results, Impact of the Results: • Ensure that all analyses, visual or otherwise included in the final version of the program, include interpretations of what these analyses indicate. • Make sure that you do not speculate! Use evidence to support any assertions that you make. Future Recommendations: • You must also include recommendations for future analysis. An example might look something like this: o An opportunity for further research, based on gaps found in the random forest modeling, is to look at the ability to tune the parameters further, to improve the outcome. 4/24/20 Assignment 1 KS MY.docx P a g e | 3 o Additionally, an opportunity for future research is exploration modeling to determine what other variables, when eliminated, have little or no impact on the
  • 8. ability to predict the SVI based on the supporting characteristics in the data. • You will base your recommendations on your findings in the analysis you conduct. Bonus challenge: Create a random forest model for each state you were assigned. Is there a difference in the models’ results? What does that result mean in terms of the data? Make sure that you do not speculate! Use evidence to support any assertions that you make. Required files to submit: 1) Research paper in APA 7 format; MS Word document file type 2) R Script; final version Good to know: • When submitting in Blackboard, you may receive an error, because the R file type is not recognized. That is okay. It is only indicating that SafeAssign cannot evaluate that part of your submission. o The research paper will be written in a professional writing
  • 9. style, following APA 7 student paper format; you can use the student paper template. o The document shall be 3-5 pages or at least 800 words. The page count does include the cover page or reference page. o Ensure that every reference in your reference list is also cited in the text. Do not forget to cite and reference the source of the data. • When developing your research paper, you may modify the topic, problem, and research questions. However, the minimum requirements for the method of analysis cannot be altered. • Ensure that you make the research yours and complete this assignment independently. • There are several different versions of this assignment. If you complete a version of this assignment that is not available to you in Blackboard, you will violate your pledge. • If you are concerned about how long the model is taking to run, you have a few options. o With the library GuessCompx, you can use the function CompEst() to evaluate the complexity and time it will take to process the function. Some things have
  • 10. to be done to the setup to use this methodology, though. ▪ Example: If the original model is called model <- train(outcome~.,data=d,subset=trainer,importance=T,method=”r f”) You would rewrite this as f <- function(d) train(outcome~.,data=d,subset=trainer,importance=F,method=”r f”) CompEst(d=d,f=f,random.sample=F) o With the library doParallel, you can use the functions makePSOCKcluster() and registerDoParallel() you can run models in parallel, to improve performance. ▪ Prior to processing the model, use the following as an example, use help or Google to learn more. This will maximize the processor power. cl <- makePSOCKcluster(4) # the value is the number of processor cores in your device registerDoParallel(cl) model <- train(outcome~.,data=d,subset=trainer,importance=T,method=”r
  • 11. f”,allowParallel=T) stopImplicitCluster() registerDoSEQ() Running head: SOCIAL VULNERABILITY INDEX 1 SOCIAL VULNERABILITY INDEX 3 SOCIAL VULNERABILITY INDEX. Rupesh Pasam Analyzing & Visualizing Data (ITS-530-05) University of the Cumberlands Dr. Kathy McClure May 17, 2020 I. Exclusion of Metrics in Predicting Social Vulnerability Index · Makes it hard for the CDC to calculate the level of aid required · The subjects being studied may not give enough detail on language limitation · Assessment of the vulnerability of a community in case of a disaster requires more well-defined metrics.
  • 12. II. Statement of the Problem Every community needs independent evaluation to find out the vulnerability of the said area. Two of the contributing factors for this analysis are language limitations and minority status. The information may lack credibility because of the fear of reprisal for individuals that fall into these categories. Exploration of the physical and social characteristics, excluding these metrics, can offer insights on the general impact of the Social Vulnerability Index. III. Research Methodology The methods utilized to gather information for addressing the research problem and the questions that stem from it will be qualitative. The reports released by the CDC in the year 2018 will play an important role in helping the researcher get the right information. IV. Results The results of the study will be achieved by coding and tallying. The researcher will source data from different reports and attempt to find similarities in what challenges the exclusion of metrics pose in the determination of community SVIs. V. Impact of the Results The results will be helpful in assisting future researchers/stakeholders within and without the CDC to use different skills so as not to exclude important data set aspects. VI. Recommendations for Future Analysis The recommendations that this research will propose to revolve around using the most significant possible samples and the blinding of respondents. In this way, it will be simpler to ward off the possibility of respondent bias. In addition to that, statistical validity will also be guaranteed. VII. Conclusion The conclusion section of the paper will summarize the content of the entire paper from the introductory section to the recommendations section. There are many ways to misrepresent data through
  • 13. visualizations of data. There are a variety of websites that exist solely to put these types of graphics on display, to discredit otherwise somewhat credible sources. Leo (2019), an employee of The Economist, wrote an article about the mistakes found within the magazine she works for. Sosulski (2016) wrote an entry in her blog that highlights misrepresentations, as well. After reading these two articles, create two visualizations in R that show identical data. In one, create a subtle misrepresentation of the data. In the other remove the misrepresentation. Add static images of the two visualizations to your post. Provide a description of the data and how the visualizations were created in R. When adding images to the discussion board, use the insert image icon. Adding Images to the discussion board References Leo, S. (2019, May 27). Mistakes, we've drawn a few: Learning from our errors in data visualization. The Economist. https://medium.economist.com/mistakes-weve-drawn-a-few- 8cdd8a42d368 Sosulski, K. (2016, January). Top 5 visualization errors [Blog]. http://www.kristensosulski.com/2016/01/top-5-data- visualization-errors/ Considerations for every forum: Remember your initial post on the main topic should be posted by Wednesday 11:59 PM (EST). Your 2 following posts should be commenting on your classmates’ post by Sunday 11:59 PM (EST). You should end the week with 3 total discussion posts.
  • 14. Your initial post should include your references, thoroughly present your ideas, and provide evidence to support those ideas. A quality peer response post is more than stating, “I agree with you.” State why you agree with your classmate’s post. The purpose of the forum is generate discussion. You could post some examples or find a related topic on the Internet or University’s library and comment on it in the discussion post. No credit will be earned for posts that are disrespectful or not on the topic of the forum. Ensure you read all of this information for the first assignment. 1) The assignment instructions are in a separate file named Assignment 1 Instructions. 2) When you finish your assignment, submit the research paper and programmed R Script here. You are not done yet!! 3) After submitting assignment 1 here, open the Assignment 1 Peer Review. After you enter, follow the prompts. The system will ask that you copy and paste parts of your research paper into Blackboard. For the assignment due next Thursday, you will revisit Assignment 1 Peer Review. When you enter next week you will not be prompted to answer questions about your research. You will be prompted to evaluate a peer's responses to the prompts. If you do not submit your responses this week, you will not be able to provide a peer review next week, forfeiting the points for that assignment. This method will ensure that anonymity is maintained when conducting peer reviews. Ensure you allot enough time to submit the assignment here and answer the questions for assignment 1 in Assignment 1 Peer Review. Assignment 1 Peer Review questions:
  • 15. · Question 1 What are your research questions? Copy exactly what is written in your research paper. Status: Not Completed · Question 2 What was your plan for analysis? Copy exactly what is written in your research paper. Status: Not Completed · Question 3 What are the results of your analysis? Copy exactly what is written in your research paper. Status: Not Completed · Question 4 What is the impact of the results and the conclusion of the research paper? Copy exactly what is written in your research paper. Status: Not Completed · Question 5 Provide the references used in your research. Ensure that when you add them to the response that they are in APA 7, represented exactly as they appear in your research paper. Status: Not Completed