Create a bubble chart

Create a bubble chart

Organize the information you’ve collected, including the data collection results from your surveys/interviews and brainstormed ideas/solutions into bubble chart (no APA format required).

https://eazyweezyhomeworks.com/order/

1. Use your bubble chart to guide you

Use your bubble chart to guide you in creating a well-formed outline. Appraise the information collected for areas that could be more robust and add more information if necessary. Make sure the outline is organized and easy to understand. (no APA format required).

https://eazyweezyhomeworks.com/order/

Local environmental epidemiology

You have a choice – pick one article, either:

  • Gignac et al. “Co-creating a local environmental epidemiology study: the case of citizen science for investigating air pollution and related health risks in Barcelona, Spain”
  • Krengel et al. “Health symptom trajectories and neurotoxicant exposures in Gulf War veterans: The Ft. Devens cohort.”
  • https://eazyweezyhomeworks.com/order/

They are quite different types of articles, so make sure to look at each one before you decide which to choose. Do not worry if you are not completely familiar with the statistical techniques; the results are clearly described in such a way that will not require deep familiarity.

Write approximately 2 to 3 pages double-spaced and make sure to include your name and the title of the article you’re reviewing.  You should cover the elements listed below, and you may decide to add some that I have not listed. Your assignment should be in narrative style, without including a heading for each of the elements listed in the attached instructions.

Run a Hosmer-Lemeshow test

BS835 Class 6 HW exercises-Run a Hosmer-Lemeshow test

Questions 1 and 2 are from the in-class exercises

 

(Hypothetical data based broadly on Maslow et.al., Reproductive Outcomes Following Maternal Exposure to the Events of September 11, 2001, at the World Trade Center, in New York City, AJPH.)  To determine the effect of exposure to the events of 9/11 (including both environmental exposures and stress-related exposures), exposure data was collected on n=3,360 women who gave birth to a singleton child in NYC between Oct. 2001 and December 2010.  We will look at any exposure (categorized as exposed vs. not exposed; the study looked at different types of exposures as well), and focus on low birthweight as the adverse outcome potentially related to exposure.  We expect the effect of exposure to be stronger for babies born in the two years following 9/11, and so we are interested in potential effect modification.

 

Hypothetical data are saved in the file ‘WTC Births.xlsx’.  Variables in the data set are:

1) idnum, a study ID number

2) momage, mother’s age at 9/11, categorized and coded as 1 for those under 30 years, 2 for those aged 30 to 35 years, and 3 for those older than 35

3) college, maternal education coded 1 for those with a 4 year college degree, 0 for those with less than a college degree

4) earlyperiod, coded 1 for births that occurred within 2 years of 9/11, and 0 for those that occurred more than 2 years after 9/11

5) exposure, maternal exposure to the events from 9/11

6) LBW, low birthweight, coded 1 for infants weighing less than 2,000 grams, 0 for those weighing 2,000 grams or more.

 

 

Question 1.  Our broad research question is whether a woman’s exposure to the events of 9/11 had an adverse effect on the outcome of her pregnancy.

 

As a preliminary check on the data, 5.2% of the mom’s in the study had a low birthweight infant.

 

As a first analysis, fit a multiple logistic regression model with low birthweight as the outcome variable and exposure, time period (the earlyperiod variable), maternal age, and maternal education as predictors.  I’ve summarized results in the following table (you can check to see that your results match the results in the table):

 

VariableaOR95% CI
Exposed to events of 9/11

Birth within 2 yrs of 9/11

Maternal age

<30 yrs

30 – 35 yrs

>35 yrs

College degree

1.35

1.15

 

Ref

0.90

0.82

0.43

0.99, 1.84

0.82, 1.61

 

0.62, 1.29

0.53, 1.27

0.31, 0.58

 

Run a Hosmer-Lemeshow test to check on the fit of the model, and interpret the results of this Hosmer-Lemeshow test.

 

 

 

Discuss these findings for the exposure variable – was there an effect of exposure on low birthweight?  Explain.

 

 

 

 

 

Question 2.  The study sample included births from the 10 years following 9/11.  The investigators believe that the effect of exposure would be strong for women pregnant at the time of 9/11 or shortly after, but that the effect of exposure may weaken over time.  To investigate, run a model including the covariates from Question 1, but adding an interaction term between exposure and the ‘earlyperiod’ (birth within 2 years of 9/11) variable.

 

Results from the interaction model are given in the table below (Note this table asks for slopes, not odds ratios).  Check these results using the SAS or R code given below:

 

Results of a logistic regression interaction model predicting low birthweight

 

Variable

 

Slope

p-value

for slope

Intercept

Exposed to events of 9/11

Birth within 2 yrs of 9/11

Exposure x Birth within 2 yrs

 

Maternal age

<30 yrs

30 – 35 yrs

>35 yrs

College degree

-2.360

0.083

-0.227

0.747

 

 

Ref

-0.108

-0.196

-0.845

<0.001

0.663

0.376

0.035

 

 

0.561

0.377

<0.001

 

 

The table below focuses on the effect of exposure, during the early period and during the late period for the study (effect modification of the effect of exposure by time), from the above interaction model.  See the SAS and R code below.  While results age given by R and SAS, I think you can calculate the two odds ratios by hand (with a calculator) from the slopes above – check these calculations.  I think we need to use the computer to get the confidence intervals for these odds ratios.

 

 

 

Effect of exposure to the events of 9/11 on low birthweight, by time period of delivery

Time PeriodaOR95% CI for aOR
Birth within 2 years of 9/112.291.28,  4.12
Birth more than 2 years after 9/111.090.75,  1.58

 

Is there effect modification here?  Explain (address significance as well as size of the effect).

 

 

Some SAS and R help follow:

 

SAS code for the interaction model in Question 2

 

proc logistic;

class momage (ref=’1′) / param=ref;

model lowBW (event=’1′) = exposure earlyperiod exposure*earlyperiod

momage college;

estimate ‘Exposure OR early period’ exposure 1 exposure*earlyperiod 1

/ exp cl;

estimate ‘Exposure OR late period’ exposure 1  exposure*earlyperiod 0

            / exp cl;

run;

 

 

 

R code for the interaction model in Question 2

 

# for later period (earlyperiod = 0)

log.out <- glm(lowBW ~ exposure + earlyperiod +

exposure:earlyperiod +

relevel(factor(momage),ref=’1′) +

college,family=binomial(link=’logit’) )

summary(log.out)

exp(coef(log.out))

exp(confint(log.out))

 

# For contrasts of exposure and interaction terms load ‘multcomp’ package

# R gives slopes and standard error for the early and late effects

# need to convert to ORs and CIs ‘by hand’

 

library(multcomp)

exp.early <- matrix(c(0,1,0,0,0,0,1),1)

summary(glht(log.out, linfct=exp.early))

 

exp.late <- matrix(c(0,1,0,0,0,0,0),1)

summary(glht(log.out, linfct=exp.late))

 

Question 3.  We can also test for effect modification through classical epidemiologic stratification methods, although these methods don’t allow for controlling for other variables.  I used the Mantel-Haenszel stratification methods (see Class 4 homework, using ‘proc freq’ in SAS and ‘epi.2by2’ in R) to examine the association between exposure to the events of 9/11 and low-birthweight, controlling for (stratifying by) the earlyperiod variable.  Results are given below:

 

Results:  From SAS, the Breslow-Day test gives chi-square (1 df) of 4.83, p=0.028.

The stratified results for the effect of exposure on low birthweight were

    Early Period: OR = 2.32 (1.30, 4.16)

    Late Period: OR = 1.08 (0.74, 1.56). 

From R, the Woolf’s test (labeled ‘M-H test of homogeneity of ORs) gives chi-square (1 df) 4.67, p=0.030.

The stratified results were:

    Early Period: OR = 2.31 (1.30, 4.22)

    Late Period: OR = 1.08 (0.74, 1.56)

 

Is there significant evidence of effect modification?  Explain.

 

 

SAS code:

proc freq; table earlyperiod*exposure*lowBW / all; run;

 

R code:

 

# M-H analysis

epi.2by2(tab.out,method=’cohort.count’)

# stratified results

oddsratio(table(exposure[earlyperiod==0],lowBW[earlyperiod==0]))

oddsratio(table(exposure[earlyperiod==1],lowBW[earlyperiod==1]))

 

 

 

 

 

Question 4.  (I’ve done the computer work and summarized results in the table below.  SAS code and R code that I used is given at the end of the question.)  Significant effect modification indicates that the association of interest is different for different subgroups in the study.  So, when there is significant interaction, another way to account for the interaction is to run separate analyses for the different subgroups.  One nice consequence of this approach is that it avoids presenting results from interaction models (which can be more complicated to present).

https://eazyweezyhomeworks.com/order/

 

 

Run two logistic regressions (I’ve done this, see table), one for mothers who gave birth within 2 years of 9/11 (earlyperiod=1), the other for mothers who gave birth after 2 years from 9/11.  Both regressions should predict low birthweight from exposure, mom’s age, and mom’s college education.  (Note that ‘earlyperiod’ and the interaction term are not included in these models, since the analysis is being done stratified by earlyperiod.)  Some SAS and R help is given below.

 

Results are summarized in the following table:

 

Results of separate logistic regressions predicting low-birthweight, for women giving birth within 2 years of 9/11 and for women giving birth more than 2 years after 9/11

Birth within 2 years of 9/11

(n=840)

Birth more than 2 years after 9/11

(n=2520)

VariableaOR95% CIaOR95% CI
Exposed to events of 9/11

Maternal age

<30 yrs

30 – 35 yrs

>35 yrs

College degree

2.30

 

Ref

0.72

0.82

0.44

1.29, 4.19

 

0.37, 1.42

0.36, 1.77

0.25, 0.79

1.09

 

Ref

0.98

0.83

0.42

0.74, 1.57

 

0.64, 1.54

0.49, 1.40

0.29, 0.61

 

Based on these analyses, describe the effect of exposure, for mothers giving birth either within 2 years or after 2 years from 9/11.

 

 

SAS code and R code are below.

 

Some SAS help:

There are several ways to run a sub-group analysis in SAS.  I’ll use the ‘where’ statement, which can be used with most procs, to restrict the analysis to a subgroup.

 

title ‘Analysis for births within 2 years of 9/11’;

proc logistic; where earlyperiod=1;

class momage (ref=’1′) / param=ref;

model lowBW (event=’1′) = exposure momage college;

run;

 

title ‘Analysis for births after 2 years of 9/11’;

proc logistic; where earlyperiod=0;

class momage (ref=’1′) / param=ref;

model lowBW (event=’1′) = exposure momage college;

run;

 

The ‘where’ statement restricts an analysis to the subset of subjects who satisfy the stated condition.

 

Some R help:

 

There are several ways to run a sub-group analysis in R.  I’ll use what I think of as a ‘select if’ statement, parallel to the ‘where’ statement in SAS.  R uses square brackets following a variable name to indicate that only subjects who satisfy the condition in the square brackets should be included in the analysis.  One somewhat awkward consequence of this is that the square brackets need to be included with every variable referenced in the procedure.

 

log.out1 <- glm(lowBW[earlyperiod==1] ~

exposure[earlyperiod==1] +

relevel(factor(momage[earlyperiod==1]),ref=’1′) +

college[earlyperiod==1],

family=binomial(link=’logit’) )

summary(log.out1)

exp(coef(log.out1))

exp(confint(log.out1))

 

log.out0 <- glm(lowBW[earlyperiod==0] ~

exposure[earlyperiod==0] +

relevel(factor(momage[earlyperiod==0]),ref=’1′) +

college[earlyperiod==0],

family=binomial(link=’logit’) )

summary(log.out0)

exp(coef(log.out0))

exp(confint(log.out0))

Note that two equal signs, ‘==’ are needed to specify an equality in the ‘select if’ statement in the square brackets.

Pick one key digital marketing role

For this discussion, after reading the material and reviewing the videos this week, pick one key digital marketing role you believe is interesting.  Review the job in more detail online and answer the following questions:

1) What is the role?

2) What are the key contributions and responsibilities of this role?

3) How does this role support digital marketing strategies?

4) What do you find most interesting about this job?

https://eazyweezyhomeworks.com/order/

Write an unsolicited informal proposal

You will write an unsolicited informal proposal for something that would enhance your learning at particular University.  It could be equipment, furniture and/or software.

https://eazyweezyhomeworks.com/order/

Servant Leadership in a movie, book

DQ #4 TOPIC: Servant Leadership in a movie, book, or drama film you have enjoyed.

Based on our readings from:

Lead Like Jesus (Blanchard, Hodges, & Hendry, 2016),

Jesus on Leadership (Wilkes, 1998)

and thus far in the lectures of LDRS 300;

https://eazyweezyhomeworks.com/order/

A Servant Leader models Jesus by having the following leadership traits:

  1. Is a Follower First. (Wilkes, 1998)
  2. Takes Risks. (Wilkes, 1998)
  3. Shares Responsibility and Authority. (Wilkes, 1998)
  4. Practices the Being Habits or Doing Habits. (Blanchard, Hodges, & Hendry, 2016)
  5. Embodies the Vision, Mission, and Values of the group. (Blanchard, Hodges, & Hendry, 2016)
  6. Is a Performance Coach. (Blanchard, Hodges, & Hendry, 2016)
  7. Leads Positive Change. (Blanchard, Hodges, & Hendry, 2016)

I want you to choose a character from a MOVIE, BOOK or DRAMA and discuss the following question.

How did the character you chose display THREE (3) traits of a Servant Leader like Jesus from the list above?

  • Give examples from the movie to support your position.
  • Remember to cite the movie and the source of the Servant Leader trait you are writing about.

** Only one post per Movie, Book, or Drama is allowed.**

– NO duplicate posts of the same Movie, Book, or Drama.

General Guidelines for Discussion Forums:

  • Each post is about 500 words in length, using full sentences and paragraphs.
  • Each post must incorporate at least three (3) citations + a Reference list.
  • All posts are clearly written and contain NO spelling or grammatical errors. Use APA Citations for all your sources and include an APA References list. (No Title Page or other APA formatting is required)

Outline for writing thoughtful posts:                                                                                           Grading

SState your idea (that is, your solution, problem, or concept) in a single sentence or two./20
EElaborate on your idea in your own words. Explain it at greater length extending your basic idea into a short paragraph. If the idea is quite complex or abstract use a metaphor, analogy, or word picture to help illustrate your understanding./35
EExemplify your idea by giving concrete examples (and counterexamples). Your examples may be personal and/or take the form of supporting citations (and counter citations). Use Academic Arguments with evidence of critical thinking using: They said – I say format./35
*Spelling, Grammar and Use of APA format. Two (3) citations + Reference list./ 10
 TOTAL100

SPECIAL TIP:

Write your reply to the question in a Word document, and then copy and paste your reply into the DROPBOX provided. DO NOT Work or Write in the Moodle program, as it will freeze, and you will lose all your work.

 

Implement a genetic algorithm to solve

Homework #2. (Practicing Genetic Algorithm) Homework (Project #1) description. Implement a genetic algorithm to solve the following problem: Consider filling a MxN rectangle with the numbers 1…MN in some random order. For example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Cost = |1-2|+|2-3|+|3-4|+|5-6|+|6-7|+|7-8|+|9-10|+|10-11|+|11-12| + |1-5|+|2-6|+|3-7|+|4-8|+|5-9|+|6-10|+|7-11|+|8-12| Each number has either 4 neighbors or 3 neighbors (on the edge) or 2 neighbors (in a corner). The total cost is the sum of the absolute differences between all neighboring pairs of numbers. If you come up with a fancy alternative to the genetic algorithm, you may request to implement that as an alternative to solve the same problem. To construct the initial population of completed states, you can initialize the rectangle however you want. For example, you might generate completely random initial states, use a specific ordering of the numbers, or use some other algorithm to create the initial states. Your program will accept the M and N values on the command line where N follows M, e.g., java GeneticAlgorithm 2 5, where M=2 and N=5. Your program can output the solution to a test file (solution_1.txt, solution_2.txt, …), and the total cost both to the standard output (screen) to a text file (solution_cost.txt). However, it will be given more credits if the ouputs are visualized graphically on the screen. Please test your genetic algorithm on the problems listed below. You should report: 1. One text file ( solution cost.txt ) should contain the total cost for each of the given problems. (one line for each) 2. For each of the problems output your solution to a separate file ( solution 1.txt, solution 2.txt, etc. ). Each of the files should contain only your solution (no other text), in other words it should have N columns and M rows. Try your genetic algorithm on the following problems. If your algorithm cannot solve or takes too long to solve a particular problem, please state that in your solution cost.txt file. If your algorithm takes too long to solve a problem, you may terminate or wait as long as you choose for it to complete. You are required to solve only problems 1 and 2, but we encourage you to try all of them. If your algorithm can solve the bigger problems, you will get extra credits. 1. N = 4, M = 5 2. N=7 M = 13 3. N = 37 M = 35 4. N = 75 M = 100 5. N = 490 M = 730 A text file with your solution should contain just the data. In other words, it should have M rows separated by a new line character ( \n ) and each one of the N columns should be separated by a comma. You can use the following programming languages: Java. We will compile (if necessary) and run your code, therefore, make sure you are not using any non-standard libraries Your algorithm has to run on Windows 10. Submission Instructions Submit all of your code and a report. In a report, describe what algorithm you have implemented and how to run your code. The report is required to be in a pdf format. In addition, please create a YouTube video. You should explain how your codes work, what the outputs of the codes are, and how those outputs were produced in that video. After uploading the video on YouTube, you should include the YouTube link in report. (If you do not include the link, you will lose 40 points) Zip all of your code and report and text files in a zip file titled .zip (e.g. smith_12345678.zip). Upload your zip file to the folder named “Homework #3” in the Brightspace by the deadline. The due date for this homework is by 11:59pm on October 28th (Friday). Important reminder: You must write your own codes and give your own answers. If you copy someone else’s codes or answers, it is a serious plagiarism. You will receive zero for this assignment and disciplinary actions will be taken. Late Policy: If you submit m days later than the deadline, your maximum grade will be 100*(1-0.m). For example, if m=2, your maximum grade is 100*(1-0.2)=100*0.8=80.

https://eazyweezyhomeworks.com/order/

1. A Case Study in Negotiation

PAPER #3: Negotiation
A Case Study in Negotiation. Using the text, Getting to Yes, you will analyze a negotiation you
have personally experienced in the last 12-18 months. A Case Study asks and answers a key
question connected to your topic with supportive evidence, observations and finally
recommendations. A well-written case is something someone else can look at and use an
example to support their position on a given topic. It is informative, creative, tells a story and
PROFESSOR B. SASAKI
TRINITY WESTERN UNIVERSITY
4
invites the reader to consider the evidence presented to shift a perspective or enlarge one’s
learning. Follow these steps:
Step 1: TITLE: Create an engaging title for this Case Study.
Step 2: KEY QUESTION/ CHALLENGE TO OVERCOME: You will create a key question that
this case study will attempt to answer. It may be a negotiation challenge to overcome, a
specific aspect of this negotiation that needs further analysis. It may connect to the
complexity of negotiation or how the keys to principled negotiation are the solution to
becoming more successful at negotiation. Whatever your question is (and it can be 1-3
sentences), make sure that it gets answered by the end of your case study. Here are
some examples to get your thinking activated but feel free to create your own.
• What barriers does a 20-year old face when negotiating with an elder and how
can they overcome them?
• How does one’s culture affect the negotiation process of buying a car?
• In what ways do women and men negotiate differently?
• How do I safely express my emotions in a negotiation with my parents?
Step 3: INTRODUCTION and BACKGROUND: Briefly explain the details of this
negotiation (who was involved, when, what the negotiation was about, what exactly
was said or done in the negotiation). Provide important details that will help the reader
fully understand the nature of the events surrounding the negotiation.
STEP 4: ANALYZE & PROVIDE SOULTIONS: Analyze the negotiation using the framework
of the 4 keys of principled negotiation (as outlined in the textbook), discuss the
following questions in your paper:
o how could you separate people from the problem?
o what are the keys interests v. positions for each party in this negotiation?
o what options for mutual gain are available?
o are there any objective criteria that could be used in this negotiation?
o what might a win-win-solution look like for all parties involved in this
negotiation?

https://eazyweezyhomeworks.com/order/
Step 5: CONCLUSION: Make sure your conclusion summarizes and answers the key
question/ challenge to overcome that you posed at the beginning of this case study.
Also include the key 1-2 things might you would recommend the reader do in future
negotiations to achieve a win-win successful outcome.

Using the text, Have a Nice Conflict

DETAILS: Each assignment will reflect an actual conflict, accountability conversation and
negotiation that each student has personally experienced in their own life, preferably in the
last 12-18 months. If you are having a challenge with this, please talk to the professor well in
advance of the deadlines to discuss your options.
Plagiarism, ghost-writing and sloppy APA adherence are simply unacceptable for a 4th year
University course. If you are struggling with your assignments or do not understand the
requirements, it is your responsibility to get clarity and assistance before the assignment is due.
LENGTH: Students will complete three (3) 7-9 page analysis and reflection assignments based
on each of the three frameworks studied throughout the course and applied to three personal
conflicts you have experienced in the last 12 -18 months.
FORMAT: Use APA 7th edition style including 12pt font, Times New Roman, double-spaced, 1-
inch margins, page numbers. APA formatted sub-headings in a paper are an excellent way to
organize your ideas and let the reader know where your ideas are moving next (HINT!) Be sure
to structure your paper as follows: a title page (1 page), reference page (1 page) and 5-7 pages
of quality analysis and reflection = 7-9 page paper.
CITATIONS & REFERENCES: Each assignment will have 6-8 in-text citations using at least three
(3) different academic sources:
• a minimum of 3 from the original textbook, and
• a minimum of 3 from other course material or approved academic resources.
• Non-academic sources may be used to support your work, however blogs, social media
outlets, Wikipedia, Buzzfeed, Dictionaries, etc. are NOT acceptable sources for these
6-8 references (so you can use other quotes, blogs, etc. but they do not count towards
this requirement).
PROFESSOR B. SASAKI
TRINITY WESTERN UNIVERSITY
2
PAPER #1: Conflict
Using the text, Have a Nice Conflict, analyze a personal conflict you have experienced in the
last 12-18 months. Follow these steps:
Step 1: EXPLAIN: Briefly EXPLAIN the conflict (who was involved, when, what the issue
was, what exactly was said or done to create the conflict.)
Step 2: ANALYZE & EVALUATE: ANALYZE & EVALUATE the conflict using the core
principles of anticipate, prevent, identify, manage and resolve (as outlined in the
textbook). Include the following as you reflect, analyze and evaluate the conflict:
• SDI & Motivational Values
o Discuss your MVS, how does your unique colour show up in this conflict?
Where do your strengths or weaknesses show up in the conflict?
o What about the other person/party – what might their motivational value
system be? Please give an example.
o What do you think were the intentions or motivations of the other
person/party? What were your primary motivations or intentions in this
conflict? Provide an example to illustrate.
• Was the conflict resolved?
o If YES à explain the resolution and evaluate the result.
o If NOà discuss what you could do to resolve it or even if it can be resolved.
§ Provide examples to support your ideas.
Step 3: RECOMMENDATIONS: Based on what you have learned in the book, online
lectures, activities and your own SDI assessments, answer the following in your
recommendations:
1. What 1-2 key things did you learn about yourself as you look back at this
conflict?
2. What 1-2 key things might you did differently in future conflicts?
PAPER #2: Accountability
Using the text, Crucial Accountability, you will be making some key discoveries about areas
that you both succeed and struggle with in keeping yourself and others accountable. Follow
these steps:
Step 1: READ THE TEXT & TAKE THE ASSESSMENT: After reading the textbook, take the
Self-Assessment Survey (Appendix A, pp. 247-251) and review your results. The survey is
divided in the seven chapters of the book that cover the crucial accountability skills (five
questions each). You will need to read each chapter in order to understand your results
and the process of holding healthy accountability conversations. You will be handing in
your completed Self-Assessment Survey worksheet in a separate Moodle dropbox for
PROFESSOR B. SASAKI
TRINITY WESTERN UNIVERSITY
3
the professor to review before you complete your paper AND you will be attaching the
same document to this paper as Appendix A: Self-Assessment Survey
Step 2: ANALYZE & EVALUATE: Choose TWO (2) of the SEVEN (7) areas where you
scored the most “YES” answers and observe, analyze and reflect on those specific areas.
Consider answering the following in your submission:
o Summarize the key points the authors make in the textbook in these two
specific chapters. Share examples and citations to support your statements.
o What does this score mean to you about your ability to hold yourself or
others accountable? Discuss.
o Does it accurately reflect some areas of weakness in your accountability?
Discuss and explain your answer with examples from your life.
o Consider how your MVS shows up in the area of accountability. Include any
insights you may have about SDI results and your Crucial Accountability
Survey results.
o For each of these 2 accountability areas you wrote about, make 2
recommendations how you can improve your accountability to yourself and
others as you navigate bad behavior and broken promises in your
work/home/school/ life relationships. For example, if you are evaluating,
“Describing the Gap”, what two recommendations can you make for yourself
in this specific area to improve your ability to describe the gap when holding
an accountability conversation. Do this for both of the sections you are
analyzing.

https://eazyweezyhomeworks.com/order/
Step 3: RECOMMENDATIONS: Based on what you have learned from the textbook,
online lectures and activities answer this question à Why do you think accountability is
an important leadership skill – personally and organizationally? Provide support,
citations and an example or two to support your thinking from all course material to
date and other outside sources as applicable.
PLEASE NOTE: You will be handing in your completed Self-Assessment Survey worksheet in a
separate Moodle Dropbox for the professor to review before you complete your paper
AND ALSO you will be attaching THE SAME COMPLETED DOCUMENT to this p