Competency In this project, you will demonstrate your mastery of the following competency: Analyze the results of queries constructed to address data requirements Scenario The product manager of...

1 answer below »

Competency


In this project, you will demonstrate your mastery of the following competency:



  • Analyze the results of queries constructed to address data requirements


Scenario


The product manager of Quantigration has asked your data analytics team for a report summarizing your analysis of the return merchandise authorizations (RMAs) that have been received. These are the same data sets that you’ve already been working with. Your report should focus on summarizing the analysis and presenting your findings to the product manager.


Directions


RMA Report


In your report, respond to the manager’s requests: to summarize the data you’ve been working with and to identify key information that will help the company streamline operations. Remember, not everyone who reviews this report will have a technical background.



  1. Begin by writing SQL commands tocapture usable data(which you’ve preloaded into Codio)for your analysis.

  2. Specifically, the product manager wants you to analyze the following:



    • Analyzethenumber of returns
      by stateand describe your findings in your report.


    • Analyzethepercentage of returns by product typeand describe your findings in your report.



  3. In your report, clearlysummarize your analysis of the data for stakeholders. Include screenshots of the results of each query. When summarizing results, you may want to consider the following questions:


    • How does the data provide the product manager with usable information?

    • What are the potential flaws in the data that has been presented?

    • Are there any limitations on your conclusions, or any other ways of looking at it that you haven’t considered? Clearly communicate your findings to stakeholders.




What to Submit


To complete this project, you must submit the following:



Data Analysis RMA Report


Submit a report for the product manager summarizing the results of your analysis. Your report will address the analysis that you’ve conducted. Provide screenshots of your SQL queries and their resultant output following the same instructions for capturing screenshots that you were given in previous assignments. Lastly, provide a brief report that summarizes your analysis. Any references must be cited in APA format.

Answered 2 days AfterJun 16, 2022

Answer To: Competency In this project, you will demonstrate your mastery of the following competency: Analyze...

Mohd Abas answered on Jun 18 2022
77 Votes
STATES HAVING LOWEST RETURN ORDERS:
SELECT c.State,                                                count (Distinct o.OrderID) AS orders
                            FROM                                            Collaborators AS c                                        INNER JOIN                                            Orders o ON                                        c.CollaboratorID = o.CollaboratorID                            GROUP BY c.State                                            HAVING orders BETWEEN 1 AND 500;
STATES HAVING RETURN ORDERS between 500 and 750;
SELECT c.State,                                                count (Distinct o.OrderID) AS orders                            FROM                                            Collaborators AS c                                        INNER JOIN                                            Orders o ON                                        c.CollaboratorID = o.CollaboratorID                            GROUP BY c.State                                            HAVING orders BETWEEN 500 AND 750;
STATES HAVING RETURN ORDERS between 750 and 800;
SELECT c.State,                                                count (Distinct o.OrderID) AS...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here