due today…. 6 hours….. answer 4 questions….

this is due in 6 hours….. no late work 

Use the attachment and chapter 10 to answer the following questions:

(based on california, united states; if you need to look up cps number do google search)

 Please include a cover page in your submission. Most responses are between 2-5 sentences long and depends on the question. Make sure to write in complete sentences. 

1.What should teachers do if they suspect that a child is being abused or neglected?

2. Which type of abuse is the most difficult to detect? Explain why. 

3. State four (4) ways that teachers can support abused and neglected children in the classroom.

4. Explain the process of reporting suspected child abuse and neglect beginning from the point when you realize a child in your care is being abused to when child protective services take over. To answer this question, you may ask yourself the following:

  • What documents must I have prepared to share with child protective services (CPS)? 
  • What is CPS’s phone number, whether local authorities or a hotline, should l call?
  • What information should I be prepared to give about myself as an anonymous mandated reporter?
  • What should I expect CPS ask me to do after my report?
  • What will I do the day after I report the incident?

dis 2 topic 1

  Discussion Topic 1 of 2: 

  • (1) (As you’ve done before) identify an industry or “type of company” (you don’t have to “name any names”) in which you have worked in the past.
  • (2) Consider the VRINO framework from the “Internal Analysis” sections in the book, lecture videos, and my summary. What, would you say, is a competitively valuable resource that your ORGANIZATION possessed? 

**In terms of a “word count” guideline, roughly 300-400 words is a good target. No need to post the entire VRINO analysis (please don’t…just your synthesis of your thinking) !

300-400 WORDS PARAGRAPH PER DISCUSSION TOPIC 

——————————————————————————————————————————————-

Discussion Topic 2 of 2:

  • JIT, VRINO, VIMOSA, ROA…acronyms are all around us. For better or worse, acronyms are part of the internal language and routines of an organization. What are some of the most ridiculous AND most useful acronyms you have seen in your past organizational experience? 
  • Relatedly, if you were Grand Emperor of the World, which organizational practices would you REQUIRE and which would you ELIMINATE, for all time?

**In terms of a “word count” guideline, roughly 300-400 words is a good target. No need to post the entire VRINO analysis (please don’t…just your synthesis of your thinking) !

300-400 WORDS PARAGRAPH PER DISCUSSION TOPIC 

Freedom and Reconstruction

2.  Freedom and Reconstruction

In Unit I, we read about and discussed many antebellum (pre-civil war) stories, essays, and documents, primarily focused on slavery and the struggle to abolish slavery and free all African Americans. And, in 1863, the Emancipation Proclamation abolished slavery. With Unit II, we have begun to look at the stories, essays, and documents of post slavery and reconstruction after the Civil War. Then, in 1865 The Thirteenth Amendment proclaimed that “(n)either slavery nor involuntary servitude…shall exist within the United States….” In 1868, The Fourteenth Amendment proclaimed that “(a)ll persons born or naturalized in in the United States…are citizens of the United States…” and that “(n)o State shall make or enforce any law which shall abridge the privileges or immunities of citizens of the United States; nor shall nay State deprive any person of life, liberty, or property, without due process of law; nor deny to any person within its jurisdiction the equal protection of the laws.”  In 1870, The Fifteenth Amendment proclaimed that “(t)he right of citizens of the United States to vote shall not be denied or abridged by the United States or by any State on account of race, color, or previous condition of servitude.” And so ended the slavery and inequality of the previous 200 years, right? Not so, according to the many selections written from 1865 to 1919.

In at least 300-350 words, discuss what was seen as the continuing need to address abolition, even after abolition of slavery and emancipation had been made law. Name at least 3 issues that led many people to declare that slavery was not ended. Make well-developed, cited reference to at least 3 different authors. Also, what extraordinary struggle faced black women?

Remember that each time you make reference to ideas in the text, you must identify the author and the page on which that idea is stated. Also, when making reference be sure to present complete thoughts and ideas from the texts and to make clear links between what you’re saying and what the text is saying.

Algoritmi

Last.fm, one of the oldest organizations for online music, was founded in 2002 as a radio and social music discovery platform, offering music streaming and personal recommendations to its users.

The consumption of music was perceived at Last.fm as a social behaviour: a data-driven approach made it possible to discover the music taste of users, constructing detailed user’s listening profiles by tracking listening habits and suggesting new songs by analyzing the listening profile and similarities between songs.

In this project, you will analyze excerpts of some real datasets publicly released by Last.fm.

Goal: finding the “top” song-authors by tag

You are given as input a CSV file containing a list of song tracks and additional details. Each line has:

track_id, song_title, author_name, tags

where tags is a string with one or more text user-provided labels that characterize the song,

separated by “;” (e.g. “rock;indie;female vocalist”).

Your task is to design and implement a Python code that reads the CSV file, extracting the relevant information which must be then stored in a suitable data structure. The data structure should make it possible to answer queries of the form:

Which are the top K song-authors matching a given list of tags L?

as fast as possible. The list of tags L and the integer value K are given as input to your query algorithm.

Example

In the small CSV dataset that you will be provided (see below), there are 2526 “rock” songs and 1762 “pop” songs, among the other tags. Only 1340 songs have both “rock” and “pop” in their tags (in any order). Among these 1340 songs, the top authors are:

 

• The Police, with 148 songs

• U2, with 110 songs

• The Cure, with 109 songs

• Elvis Presley, with 106 songs

• Michael Jackson, with 101 songs

Hence, if K=2 and L=[“rock”, “pop”] (or L=[“pop”, “rock”]), your algorithm should return the ordered list of strings [“The Police”,”U2″], where items appear in the list in decreasing order of number of songs. If two authors have the same number of songs, they should appear in alphabetical order.

If K=4 and L is the same as above, your output list should be [“The Police”, “U2”, “The Cure”, “Elvis Presley”].

Datasets

You are given four datasets: small.csv, medium.csv, large.csv, and full.csv:

• The small dataset has about 3000 songs (20 authors, 7 tags).

• The medium dataset has about 10000 songs.

• The large dataset has about 100000 songs.

• The full dataset has about 500000 songs.

We will run your query algorithm on the different datasets: the larger the dataset you can handle (correctly), the better the evaluation of your project! We will also consider the running time of your code on the datasets that you can solve.

Python implementation guidelines

We are providing you a skeleton of the code. You can modify the code we provide, adding the missing parts.

In the project folder, you will find a file main.py (used to run the project) and the input file small.csv. You should not change the main file, except for the variable group_id (as specified below).

Change the name of folder group0 to match the group id that we will assign you after the registration on Luiss Learn, and also change the group_id value in main.py.

Implement your code in file project.py, that contains two functions (you can add more functions, if needed, but you must at least implement these ones). Function prepare will be called once per song list: use prepare to read the input file and store the relevant information in suitable global data structures of your choice. Function top_authors should implement your query algorithm, as described above.

You can use additional files, if needed, but all of them have to be in the group folder. There is a file utils.py where, if you want, you can implement auxiliary algorithms and data structures.

You can use Python lists, dictionaries, and string functions, but no specific algorithm from any Python library. If you need any algorithms (e.g., for searching, sorting, or selection) you have to implement your own version from scratch. If in doubt, just ask.

Project report

You should write a report on your implementation (about 2 pages) describing your code, how it works, and the main reasons of your implementation choices (e.g., why did you use a sorted list instead of a dictionary? How does your query algorithm work?).

As a bonus, you should try to analyze the asymptotic cost of your implementation assuming that:

• Each song a O(1) tags, each of length O(1). Hence, any string processing on the “;” separated

tags string (such as a split) requires constant time.

• Function top_authors is called with exactly 2 tags [t1, t2] and there are n1 songs with tag t1,

n2 songs with tag t2, and n songs with both tags where n < min(n1, n2). Keep in mind that n is much smaller than the total number of songs in the input file.

Deadline and what to send us

You should send us (Caminiti and Finocchi) an e-mail with a pdf file containing your report and a zip file with your group folder. The subject of the email should be: “Algorithms project 2021 group X”, where X is your group id.

Project deadline: May 25, 2021.

We will run your code and let your implementations compete against each other: which groups are the fastest? Which groups can solve the largest datasets? We plan to release the results of the contest on the course Web site before the first exam session (June 3).

Submit an Executive Summary that spans the entire range of topics within your MBA program and that integrates prior learning, experiences, and insights gained throughout the MBA program

 Topics can include financial management, organization, management skills etc…

Submit an Executive Summary that spans the entire range of topics within your MBA program and that integrates prior learning, experiences, and insights gained throughout the MBA program, with personal and professional development goals by addressing the following questions:

  • Page One: The MBA and Your Goals and Contributions to Social Change
    • Which content, conceptual ideas, frameworks, tools, and assignments in your MBA improved your understanding and skills in ways that will enable you to achieve your professional goals?
    • What impact has your improved understanding had, or what impact do you anticipate your understanding will have, on the value you will bring to your role within an organization and the world at large, particularly with respect to being an agent for positive change (at the individual, organizational and communities level)? NOTE: This is a very important element of your response, please be deliberative in your response.
  • Page Two: The MBA Program’s Content & Your Practice of Business Administration
    • How have the content and assignments changed the way you think of your role within the organization and the way you will practice your profession?
    • How have the content and assignments shaped your goals now and how do you anticipate they will shape your goals in the future?
    • How has your MBA helped you appreciate the role that an individual manager or a business has in facilitating positive social change?

General Guidance on Assignment Length: Part 1 of your BPPG, your MBA program Executive Summary, should be approximately 2 single-spaced page(s).

R studio Model

   

Option #1: Course Selection Association Rules

In this Critical Thinking Assignment, you will analyze association rules. Your assignment submission will be an R Markdown generated Word document.Create a new R Markdown file by performing the following steps.

1. Open R Studio

2. Select File | New | R Markdown

3. Use Module 6 CT Option 1 as the Title

4. Use your name as the Author

5. Select the Word output format

6. Delete all default content after the R Setup block of code, which is all content from line 12 through the end of the file.

The CourseTopics.csv (Links to an external site.) file contains eight attributes which are courses that a student could take. Each data row provides the courses taken (1 in the attribute) by a single student. Analyze this data by performing the following steps.

1. Create and interpret 3-5 association rules.

2. Follow the process described in section 14.1.

3. Use the R code example in Table 14.4.

4. Use 0.01 for minimum support.

5. Run minimum confidence of 0.1 and 0.5 in the apriori() function.

6. For your assignment submission, copy your commands into your R Markdown file.

a. Include R comments on all your code.

b. Separate sections of R code by using appropriate R Markdown headings.

7. Use the R Markdown Knit drop down menu to select Knit to Word to create the Word document for your assignment submission.

knit to Word

Your assignment submission must be one Word document that meets the following requirements:

· Is an R Markdown generated Word document containing all R code used in this assignment, appropriate R comments on code, and appropriate R Markdown headings.

· Does not include a cover page.

· Does not include an abstract.

· Includes a one-page description of what you did and what you learned. Add this description to the end of the R Markdown document as a new page. This page must conform to APA guidelines in the CSU Global Writing Center (Links to an external site.).

assignment 8

In this journal entry, respond to the assignment/questions listed below. Your response should be cohesive (in paragraph form, not as a list). Use academic writing conventions, and proofread before submitting. For journal entries, always copy and paste text into the journal entry (do not attach files; do not write in the comments box). Don’t consult any outside sources. If you’d like to quote a text, be sure to include an MLA-style citation. All quotes should be in quotation marks (see MLA Help in Resources area for advice on this).

Your journal entry should be a cohesive 300 -word entry.

Clicking on the assignment name above should open the submission screen, please follow the directions listed there to submit your assignment.

Respond:

Choose wither of these poems: “Quinceanera”, “Do not go gentle…” “Harlem,” or “Metaphors”. Re-read the poem and consider its use of figurative language and its theme. What idea or statement is this poem trying to send to its readers?

Answer each of the questions below about the poem you’ve chosen. Write in complete sentences, and include examples from the poem where necessary. You are encouraged to quote from the poem (be sure to integrate the quotes into your own sentences), and you can also embed an image if you would like to create or find one that you think reflects the poem’s meaning. The “Insert/Edit Image” button in the menu about (it has a mountain and sun) will enable you to add an image to your entry. Again, don’t attach a separate file. 

a. What use of figurative language stands out the most to you in this poem?

b. What type of figurative language is it?

c. What meaning is conveyed by the figurative language?

d. Why do you think the author use figurative language, rather than stating something literally?

e. How does this use of figurative language relate to or emphasize the theme of the poem?

Write in clear and complete sentences, proofread carefully, and be sure to include the name of the poem and poet. Don’t attach a document, but type (or paste) text into the text box for the journal entry. You are encouraged to use quotations from the poem to support or illustrate your points, but otherwise, don’t consult any outside sources or website. Rely on your reading of the poem and the information from our lessons.

Strategic Management

 

Project 1:  Starting an External Environmental Analysis 

     Hide Assignment InformationTurnitin®Turnitin® enabledThis assignment will be submitted to Turnitin®.Instructions

BMGT 495 – Project 1:  Starting an External Environmental Analysis (Week 2)

NOTE:  All  submitted work is to be your original work (only your work). You may  not use any work from another student, the Internet or an online  clearinghouse.  You are expected to understand the Academic Integrity  Policy, and know that it is your responsibility to learn about  instructor and general academic expectations with regard to proper  citation of sources as specified in the APA Publication Manual, 7th Ed.  (You are held accountable for in-text citations and an associated  reference list only). 

Project 1 is due Tuesday by 11:59 p.m. eastern time of week 2 unless otherwise changed by the instructor.

Purpose:  

This  project is the first of four projects.  This project provides the first  steps in completing an external environmental analysis of your focal  company’s strategic management plan.   You will use tools and apply  concepts learned in this and previous business courses to demonstrate an  understanding of how organizations develop and manage strategies to  establish, safeguard and sustain their competitive positions in the 21st century’s (rapidly evolving/shifting/changing), uncertain hyper-competitive business environment. 

Completing  a company overview and assessing the general environment is a key  aspect of performing an external environment analysis.  This project  provides you with the opportunity to evaluate the competitive position  of one of the organizations listed below and integrate that information  in the beginnings of an external environmental analysis. 

The  company you will be analyzing operates within the global market.  You  will assess the company in terms of the global industry.  Industries  differ widely in their economic characteristics, competitive situation  and future profit potential.

In  this project, you are presenting a report document.  The expectation is  that the report provides the level of details to help the audience  grasp the main topics and to understand the General Environment. 

Analysis  is the operative word.  In analyzing the external environment, you are  expected to thoroughly research and take that research and break it into  small parts to gain a better understanding of what is happening in the  external environment of the business.  In researching an industry, it is  important to understand that every company within an industry is  different so gathering information on one company does not mean that the  collected information is relevant to other companies within that  industry.  When researching, parsing the material is critical to an  accurate analysis.  Avoid presenting just any information as that may  lead to using irrelevant information.

You  will then write the report in your own words to share the external  analysis.  You are expected to present information and support the ideas  and reasoning using the course material and your research.  You will  not lift any information from source documents without properly citing  and referencing.  For the technical analysis aspect of the project, you  are required to create the technique on your own and may not use from  any source material that you happen to find.  No work from a  clearinghouse or similar website may be used or cited as a credible  source. 

Outcomes Met With This Project:

  • utilize a set of useful analytical skills, tools, and techniques for analyzing a company strategically;
  • integrate  ideas, concepts, and theories from previously taken functional courses  including accounting, finance, market, business and human resource  management;

Instructions:

In  completing the report, you will use the chapters in the eBook and other  course material. Moreover, you will perform research on the company and  its industry before responding, in narrative form, to the information  provided in the steps (see below). 

Step 1:  Specific Company for All Four Projects

In this project, you will complete a Company Overview, an Evaluation of the General Environment and a conclusion.

You  will be assigned by your instructor one focal company to complete the  analysis.  The assigned company must be used for all four projects in  this course. You are not allowed to write the report on any other  company different from the company specifically assigned by your  instructor.  If a company other than that assigned to you is used, a  zero will be assigned.

The  instructor will assign you a company from the list below.  (Students  may not select the company).  All companies can be found on Mergent  Online.

  • Pfizer, Inc. (NYSE: PFE)
  • BHP Group Ltd. (NYS: BHP)
  • Tesla Inc. (NYS: TSLA)
  • Kraft Heinz Co. (NYS: KHC)
  • Students  must complete the project using the assigned company.  Deviating from  the assigned company will result in a zero for the project.  You will  look for the company assigned to you in the Announcement area of the  classroom.

Step 2:  Course Materials and Research

  • You  are required to research information about the focal company and the  external environment for this project. You are accountable for using the  course materials to support the ideas, reasoning and conclusions made.   Course materials use goes beyond defining terms but is used to explain  the ‘why and how’ of a situation.  Using one or two in-text citations  from the course materials and then relying on Internet source material  will not earn many points on the assignment.  A variety of source  material is expected and what is presented must be relevant and  applicable to the topic being discussed.   Avoid merely making  statements but close the loop of the discussion by explaining how something happens or why something happens,  which focuses on importance and impact.  In closing the loop, you will  demonstrate the ability to think clearly and rationally showing an  understanding of the logical connections between the ideas presented  from the research, the course material and the question(s) being asked.
  • Note: Your  report is based on the results of the research performed and not on any  prepared documentation.  What this means is that you will research and  draw your own conclusions that are supported by the research and the  course material rather than the use any source material that puts  together any of the tools or techniques whether from the Internet,  for-pay websites or any pre-prepared document, video or source  material.  A zero will be earned for not doing your own analysis.
  • Success:  The  analysis is based on research and not opinion.  You are not making  recommendations and you will not attempt to position the focal company  in a better or worse light than other companies within the industry  merely because you are completing an analysis on this particular  company.  The analysis must be based on factual information.  Any  conclusions drawn have to be based on factual information rather than  leaps of faith.  To  ensure success, as stated above, you are expected to use the course  materials and research on the focal company’s global industry and the  focal company.  Opinion does not earn credit nor does using external  sources when course materials can be used.  It is necessary to provide  explanations (the why and how) rather than making statements.   Avoid  stringing one citation after another as doing so does not show detailed  explanations. Also, page and paragraph numbers are required for  all citations in this course. See the Checklist under Step 5 for an  explanation about providing this information from this class’s ebook or  from videos.

Library Resources

  • On  the main navigation bar in the classroom select, Resources and then  select Library.  Select Databases by Title (A – Z).  Select M from the  alphabet list, and then select Mergent Online.  You should also be  looking at the focal company’s Annual Report or 10K report on either  Mergent or your focal company’s website.  Dun and Bradstreet’s Hoovers  Database is also an excellent source comparable to Mergent and has  significant industry competitor information. The point is, you need not  depend on any one resource to complete the analysis.  For example, it is  impossible to complete a PESTEL analysis by using only course material.  (See Dr. Kathy’s Notes for Week Two for how to cite and  reference information from Mergent, as well as how to cite and reference  information from a company’s Annual Report).
  • You should not be using obscure articles, GlassDoor, or Chron or similar types of articles.  
  • Research for Financial Analysis: Financial Research
  • Research for Industry Analysis.  Note that your focal company may or may not be found on this link, but  your focal company’s industry is. See Dr. Kathy’s Notes for Week Two for  which Industry you should be analyzing. CSI Market 
  • UMGC library is available for providing resources and services. Seek library support for excellence in your academic pursuit.  
  • The  Analysis provided for this project must be your own. Using Tables or  Analyses that are already developed and available on the Internet will  result in a zero. Remember all Projects are submitted to Turnitin.

Library Support

  • Extensive library resources and services are available online, 24 hours a day, seven days a week at https://www.umgc.edu/library/index.cfm to support you in your studies.  The UMGC Library provides research assistance in creating search strategies,  selecting relevant databases, and evaluating and citing resources in a  variety of formats via its Ask a Librarian service at https://www.umgc.edu/library/libask/index.cfm.
  • Scholarly Research in OneSearch is allowed.
  • To  search for only scholarly resources, you are expected to place a check  mark in the space for “Scholarly journals only” before clicking search.

Step 3: How to Set Up the Report:

  • The  document must be written in Word or rtf.  No other format is  acceptable.  Pdf files will not be graded.  Use 12-point font for a  double-spaced report.  The final product should  be approximately 6-8 pages in length, but should not be longer than 8  pages in length, which includes all tables and matrices but excludes the  title page and reference page.  Do not use an Appendix.
  • Create a title page with title, your name, the course number, the instructor’s name.
  • Use section headings and numbering as outlined below.

Step 4: Write  the Report – The Report should be written in sections with section  headings and section numbering as outlined in red below (heading numbers  and titles are listed below in red font for you ease of identification.  Red font should not be used in your assignment).

I. Company Overview – Provide  a company overview, which is an essential component to the strategic  management process.  The company overview includes the purpose(s) for  the founding of the company, i.e, what problems was it formed to solve  and/or opportunities it was formed to exploit, who are the founders,  home country or state, current management, employee headcount, last  year’s revenue, etc.).

II. Evaluation of the General Environment

i. Global Industry –  Identify the global industry in which the company operates.  This will  come from Mergent Online. (See instructions above for how to access  Mergent Online.) This is a CRITICAL first step for the rest of this  course! If multiple industries are identified for your company, click on  the link “Business Segments” under Company Details. Focus on the  business segment with the most revenue. See Dr. Kathy’s Notes for more  details.

ii. PESTEL Analysis  – Discuss the company’s general environment by developing a PESTEL  analysis.  First, use the course material to identify the elements of  the PESTEL and what components make up each element.  Then, complete the  analysis using research on the industry and the focal company. Be sure  to thoroughly present and support the reasoning for what is presented.   You may not use a PESTEL analysis that is already completed and  available on the Internet.   A zero will result if used as the analysis  has to be the result of your research and your own development.  NOTE:   A PESTEL analysis is not a table and it is not a bulleted assessment.

iii. Six Key Trends – Identify and discuss one key trend for each letter of the PESTEL for the industry (six in total).  Key trends are separate from the PESTEL analysis.

iv. One Key Trend for this Company – Select one of the six trends identified in the previous requirement and discuss how the focal company  could be affected by this selected trend. This is different from the  last question, which requires a discussion about the trends for the  industry.

v. Areas of Uncertainty  – Discuss key areas of uncertainty related to the identified trend for  the focal company that could potentially impact the company’s strategy.

vi. Strategic Analysis  – Perform a strategic analysis of the company’s mission, vision and  objectives. (Note in some cases a company may only have a published  mission and not a published vision, or vice versa. If that is the case,  indicate as such.)

III. Conclusion – Create  a concluding paragraph.  The Conclusion is intended to emphasize the  purpose/significance of the analysis, emphasize the  significance/consequence of findings, and indicate the wider  applications that are derived from the main points of the project’s  requirements.  You will draw conclusions about the findings of the  external environment analysis.

Step 5:  Review the Paper 

Read the paper to ensure all required elements are present.

The  following are specific requirements that you will follow.  Use the  checklist to mark off that you have followed each specific  requirement.  

   

Checklist

Specific Project Requirements

 

Proofread your paper

 

Read  and use the grading rubric while completing the paper to ensure all  requirements are met that will lead to the highest possible grade. 

 

Third  person writing is required.  Third person means that there are no words  such as “I, me, my, we, or us” (first person writing), nor is there use  of “you or your” (second person writing).  If uncertain how to write in  the third person, view this link: http://www.quickanddirtytips.com/education/grammar/first-second-and-third-person

 

Contractions are not used in business writing, so do not use them.  

 

Paraphrase  and do not use direct quotations.  Paraphrase means you do not use more  than four consecutive words from a source document.  Removing quotation  marks and citing is inappropriate.  Instead put a passage from a source  document into your own words and attribute the passage to the source  document.  There should be no passages with quotation marks.  Using more  than four consecutive words from a source document would require direct  quotation marks.  Changing words from a passage does not exclude the  passage from having quotation marks.   If more than four consecutive  words are used from source documents, this material will not be included  in the grade.  

 

You  are expected to use the research and weekly course materials to develop  the analysis and support the reasoning.   There should be a robust use  of the course material.  Material used from a source document must be  cited and referenced.  A reference within a reference list cannot exist  without an associated in-text citation and vice versa.  Changing words  from a passage does not exclude the passage from having quotation  marks.   

 

Use in-text citations and provide a reference list that contains the reference associated with each in-text citation.

 

You  may not use books in completing this problem set unless part of the  course material.  Also, do not use a dictionary, Wikipedia or  Investopedia or similar sources. You may not use Fern Fort University, Ibis World or any other for-fee website.  

 

Provide  the page or paragraph number in every in-text citation presented.  If  the page numbers in the eBook are not visible to you, include the  chapter title and topic heading.  Page or paragraph numbers are not  required for citations of videos or podcasts in this course.

 Step 6:  Submit the paper in the Assignment Folder (The  assignment submitted to the Assignment Folder will be considered  the student’s final product and therefore ready for grading by the  instructor.  It is incumbent upon the student to verify the assignment  is the correct submission.  No exceptions will be considered by the  instructor).

Self-Plagiarism: Self-plagiarism  is the act of reusing significant, identical or nearly identical  portions of one’s own work.  You cannot re-use any portion of a paper or  other graded work that was submitted to another class even if you are  retaking this course.  

NOTE:  All  submitted work is to be your original work. You may not use any work  from another student, the Internet or an online clearinghouse.  You are  expected to understand the Academic Integrity Policy, and know that it  is your responsibility to learn about instructor and general academic  expectations with regard to proper citation of sources as specified in  the APA Publication Manual, 7th Ed. (Students are held accountable for  in-text citations and an associated reference list only). 

Du 

5 asssignments 3rd week

 

3.1 Assignment: Reading and Remediation

 

Getting Started

Viewing the videos and practicing using the practice Excel file with its video can prepare you for the work needed on the research report for the data set.

In order to successfully complete this exercise, you should be able to:

  • Review videos about statistics fundamentals.
  • Practice with the Excel file provided.

Resources

  • Video: Correlation and Regression
  • Video: Scatterplot and Simple Linear Progression
  • Textbook: OpenIntro Statistics
  • File: WS3Practice
  • File: WS3Homework

Background Information

Providing background and descriptive statistics is like a literature review section of a dissertation. You review and communicate the central tendency and variation elements to the raw data. You present visual representations of the data to give meaning to the raw data.

Instructions

  1. Watch the following video on correlation and regression:
  2. Watch the Excel remediation video on scatterplots and simple linear regression: Scatterplot Regression.
  3. An optional supplementary textbook is OpenIntro Statistics, and you can read the concepts there.
  4. Use the lab file WS3Practice file to practice the Excel skills (includes an Excel hands-on video inside the spreadsheet as a link).
  5. Use the file WS3Homework to demonstrate the Excel skills. Each of the six problems is worth 10 points, for a total of 60 points possible for this assignment.
  6. When you have completed your assignment, save a copy for yourself and submit a copy to your instructor by the end of the workshop.

====================================================================

 

3.4 Assignment: Simple Linear Regression and Graphs

 

Getting Started

After the prior activities the analysis section can be written for your research report. Since there are three analyses to perform, this is a partial assignment for the analysis section.

In order to successfully complete this assignment, you should be able to:

  • Write part of the analysis section for a data set.

Resources

  • File: Research Report Patients
  • Your most recent research report

Background Information

This is one of the more detailed assignments in this course. You will write your first analysis for the report. 

Instructions

  1. Review the rubric to make sure you understand the criteria for earning your grade.
  2. Study the Research Report Patients file.
  3. In your report, fill out the first analysis section, including any statistics and graphs and interpretation on the analysis.
  4. When you have completed your assignment, save a copy for yourself and submit a copy of the research report to your instructor by the end of the workshop.

====================================================================

 

3.2 Discussion: Price Discrimination and P.E. of Demand

 

 

Getting Started

You will learn how knowledge of price elasticity enables managers to strategically set prices to discriminate or charge different prices to different groups. This knowledge will allow you to maximize your profitability by optimizing price structures. It will also enable you to predict the types of issues that are typically experienced with each strategy and therefore be better prepared to respond.

Upon successful completion of this discussion, you will be able to:

  • Illustrate a strategy using the theories of price discrimination.
  • Predict the outcomes on consumers and the business of various pricing strategies.

Resources

  • Textbook: Economics for Managers
  • File: Ch10.ppt

Background Information

This assignment will build on assignments in earlier workshops to help you analyze how differences in demand and elasticity lead managers to develop various pricing strategies.

Instructions

  1. Review the rubric to make sure you understand the criteria for earning your grade.
  2. Read Chapter 10 in Economics for Managers. As you read, think about the ways pricing could be improved on the goods or services that your organization produces.
  3. Download and review the Ch10.ppt PowerPoint file.
  4. Navigate to the threaded discussion below and make a post that responds to the following:
    1. Firms in various industries use a cadre of techniques to legally “discriminate” on pricing. In fact, firms never use the term “price discrimination.” They often refer to it as “price differentiation” or some other verbiage or technique. Below are five means of legally “differentiating” on price. Choose one of the examples and explain how they legally “discriminate” on pricing. What is their justification for such? Cite at least two credible sources to validate your points.
      1. Airline industry discriminating on duration prior to flight
      2. Pharmaceutical industry discriminating from one country to another
      3. Retailers using coupons, often sent electronically to “special customers”
      4. Fast food restaurants discriminating based on the age of the buyer
      5. Loyalty discounts used by a host of retailers, including grocery and drug stores
  5. Your initial post should be 400 to 600 words in length and include two academic sources that are properly cited. It is due by the end of the fourth day of the workshop.
  6. Now conduct a critical analysis of a posting by two of your classmates by the end of the workshop.
    1. The topic of your discussion response should be your classmate’s posting and should be written as if you were reviewing his/her posting in an academic journal. Your discussion response should, therefore, answer the following questions as applicable:
      1. Were your classmate’s arguments articulate and logical? Were the facts correct?
      2. Was the interpretation your classmate provided reasonable and consistent with experts in the field? Was your classmate consistent with both the substance and intent of his/her references?
    2. The focus for your critical analysis is not whether or not you agree with your classmate, but how well his/her position was presented. Each response should be at least 200 words in length and cite two academic sources.  Please strive to make your discussion responses ones that cause iron to sharpen iron.

=====================================================================

  

3.3 Assignment: GDP Application

Getting Started

Just as you needed the background of demand, supply, and markets to comprehend the impact of microeconomic variables on managers’ competitive strategies, you need a background to understand the variables that influence the overall level of economic activity. The most closely watched measure of economic activity is gross domestic product (GDP), which is the market value of all currently produced final goods and services within a country in a given period of time by domestic and foreign-supplied resources.

Upon successful completion of this assignment, you will be able to:

  • Solve for the economic growth rate of a given year.
  • Analyze changes in the gross domestic product (GDP) over a given period of time.

Resources

  • Textbook: Economics for Managers
  • File: Ch11.ppt
  • Media: Bureau of Economic Analysis

Background Information

In this assignment you will explore how to calculate the rates of real GDP and labor productivity.

Instructions

  1. Review the rubric to make sure you understand the criteria for earning your grade.
  2. Read Chapter 11 in Economics for Managers. As you read, think about how you might try to measure the economic output of a city, state, or even a country.
  3. Download and review the Ch11.ppt PowerPoint file.
  4. In a two-page paper, address the following:
    1. Access the Bureau of Economic Analysis release for Real GDP for the second quarter of 2020, the quarter in which the pandemic-related shutdowns reached their peak. Examining the bar graph on page one of the link, what stands out in the second quarter of 2020 relative to previous quarters? Examining page four of the link, which sectors of the economy appear to have been hit the hardest? Explain why these sectors were hit so hard and the effects of such events on the local, regional, and national economies. Choose some of these services from your local area. Any evidence they have experienced similar tumultuous effects? Share the information with your course mates.
  5. When you have completed your assignment, save a copy for yourself and submit a copy to your instructor by the end of the workshop.

====================================================================

 

3.4 Discussion: Aggregate Expenditure Model

 

Getting Started

The aggregate model used in macroeconomic analysis provides an outline for managers to examine changes in the macro-environment. This model helps managers understand the immense amount of macroeconomic data released by the government and other sources.

Upon successful completion of this discussion, you will be able to:

  • Illustrate the spending decisions of the different sectors of the economy using the aggregate expenditure model.

Resources

  • Textbook: Economics for Managers

Background Information

The article at the beginning of Chapter 12 describes the slow recovery of the U.S. economy since the 2007-2009 recession. The article covers changes in all sectors of the economy.

Instructions

  1. Review the rubric to make sure you understand the criteria for earning your grade.
  2. Read the following information from the US Federal Reserve “Beige Book” for September 2, 2020. As you read, think about how spending by consumers, companies, and the government may affect each other.

Overall Economic Activity
Economic activity increased among most Districts, but gains were generally modest and activity remained well below levels prior to the COVID-19 pandemic. Manufacturing rose in most Districts, which coincided with increased activity at ports and among transportation and distribution firms. Consumer spending continued to pick up, sparked by strong vehicle sales and some improvements in tourism and retail sectors. But many Districts noted a slowing pace of growth in these areas, and total spending was still far below pre-pandemic levels. Commercial construction was down widely, and commercial real estate remained in contraction. Conversely, residential construction was a bright spot, showing growth and resilience in many Districts. Residential real estate sales were also notably higher, with prices continuing to rise along with demand and a shortage of inventory. In the banking sector, overall loan demand increased slightly, led by solid residential mortgage activity. Agricultural conditions continued to suffer from low prices, and energy activity was subdued at low levels, with little expectation of near-term improvement for either sector. While the overall outlook among contacts was modestly optimistic, a few Districts noted some pessimism. Continued uncertainty and volatility related to the pandemic, and its negative effect on consumer and business activity, was a theme echoed across the country.
Employment and Wages
Employment increased overall among Districts, with gains in manufacturing cited most often. However, some Districts also reported slowing job growth and increased hiring volatility, particularly in service industries, with rising instances of furloughed workers being laid off permanently as demand remained soft. Firms continued to experience difficulty finding necessary labor, a matter compounded by day care availability, as well as uncertainty over the coming school year and jobless benefits. Wages were flat to slightly higher in most Districts, with greater pressure cited among lower-paying positions. Some firms also rescinded previous pay cuts. Others, however, have looked to roll back hazard pay for high-exposure jobs, though some have chosen not to do so for staff morale and recruitment purposes.
Prices
Price pressures increased since the last report but remained modest. While input prices generally rose faster than selling prices, they were moderate overall. Notable exceptions included inputs experiencing demand surges or supply-chain disruptions, such as structural lumber, for which prices spiked. Several Districts also reported that costs for personal protective equipment and inputs to it remained elevated. Freight transportation rates rose in several Districts due to a resurgence in demand. In contrast, contacts in multiple Districts cited weak demand or lack of pricing power as a factor behind slower growth in retail or other selling prices.

  1. Navigate to the threaded discussion below and make a post that answers the following:
    1. Based on the above information from the Federal Reserve, explain where you believe the country is at this point in the Business Cycle – peak, recession, trough, or recovery. Explain your rationale for such a description.
    2. Relative to the Aggregate Supply and Demand Model for the US, explain in your own words where you believe aggregate supply and aggregate demand are relative to a desired “equilibrium” for the economy.
    3. What might explain some of the “price pressure” alluded to in the Federal Reserve information. Is it demand driven, supply-driven, or both?
    4. The Federal Reserve’s narrative hints at a strong housing market, and consequently, much higher lumber prices.  Research some credible sites to glean why the housing market could be so strong in the midst of a pandemic and explain with sound narrative.
  2. Your initial post should be 400 to 600 words in length and include two academic sources that are properly cited. It is due by the end of the fourth day of the workshop.
  3. Now conduct a critical analysis of a posting by two of your classmates by the end of the workshop. The topic of your discussion response should be your classmate’s posting and should be written as if you were reviewing his/her posting in an academic journal. Your discussion response should, therefore, answer the following questions as applicable:
    1. Were your classmate’s arguments articulate and logical? Were the facts correct?
    2. Was the interpretation your classmate provided reasonable and consistent with experts in the field? Was your classmate consistent with both the substance and intent of his/her references?
    3. The focus for your critical analysis is not whether or not you agree with your classmate, but how well his/her position was presented. Each response should be at least 200 words in length and cite two academic sources. Please strive to make your discussion responses ones that cause iron to sharpen iron.

Create a new R Markdown file using R Studio

Option #1: Logistic Regression on Banks

In this Critical Thinking Assignment, you will summarize a dataset as well as create a logistic regression model. Your assignment submission will be an R Markdown generated Word document.

Create a new R Markdown file (Links to an external site.) by performing the following steps.

  1. Open R Studio
  2. Select File | New | R Markdown
  3. Use Module 4 CT Option 1 as the Title
  4. Use your name as the Author
  5. Select the Word output format
  6. Delete all default content after the R Setup block of code, which is all content from line 12 through the end of the file.

Explore 20 banks in the Banks.csv (Links to an external site.) file by performing the following steps.

  1. Apply what you learned in Modules 1 and 2 about data exploration by selecting and running appropriate data exploration functions. Run at least five functions.
  2. For your assignment submission, copy your commands into your R Markdown file.
    1. Include R comments on all your code.
    2. Separate sections of R code by using appropriate R Markdown headings.
  3. Run a logistic regression model by following the process described in section 10.3.
  4. Use the R code example in table 10.2.
  5. Do not partition the data. Instead, use the entire dataset for your model.
  6. Model the Financial Condition attribute as a function of the other attributes. The financial condition of a bank is either strong (1) or weak (0). 
  7. Write the estimated logistic equation in the form of the example in equation 10.9.
  8. Explain the estimated logistic equation in your one-page description.
  9. For your assignment submission, copy your commands into your R Markdown file.
    1. Include R comments on all your code.
    2. Separate sections of R code by using appropriate R Markdown headings.
  10. Create a confusion matrix and lift chart as described in section 10.4.
  11. Use the R code example in figure 10.6.
  12. For your assignment submission, copy your commands into your R Markdown file.
    1. Include R comments on all your code.
    2. Separate sections of R code by using appropriate R Markdown headings.
  13. Use the R Markdown Knit drop-down menu to select Knit to Word to create the Word document for your assignment submission.

Your assignment submission must be one Word document that meets the following requirements:

  • Is an R Markdown generated Word document containing all R code used in this assignment, appropriate R comments on code, and appropriate R Markdown headings.
  • Does not include a cover page.
  • Does not include an abstract.
  • Includes a one-page description of what you did and what you learned. Add this description to the end of the R Markdown document as a new page. This page must conform to APA guidelines in the CSU Global Writing Center (Links to an external site.).