代写IP3 Part 2: Report and Dynamic Application代做Python语言

IP3 Part 2: Report and Dynamic Application

Details

Reports

In this assignment, you will build two kinds of reports for the client's marketing and product managers:

1. Static Report: This will contain the answers to some specific questions.

2. Dynamic Application: You will generalize this investigation so that a wider range of information can be explored in an application that the marketing and product managers can run on their own machines.

Static Report

Our prior work has identified specific questions of interest. Please provide these answers in output that is easy to read (e.g. tables or graphs).

This part of the report will be directed to marketing and product managers throughout the client’s company. The idea is to give them the useful information they need to act on the specific questions they posed. Plan your communication accordingly.

Questions

1. Respondent Variables

In percentage terms, how were the survey’s respondents divided into categories for the following variables? Hint: Keep in mind that each respondent may appear multiple times in the data set.

Age Group. The age groups are defined as:

At least 18 and under 35;

At least 35 and under 50;

At least 50 and under 65;

At least 65.

Gender

Income Group. The income groups are defined as:

Under 50 thousand;

At least 50 thousand and under 75 thousand;

At least 75 thousand and under 100 thousand;

At least 100 thousand and under 150 thousand;

At least 150 thousand.

Region

Persona

2. Segmented Outcomes

Part A: What are the top 5 products by Awareness rates in the Northeast?

Part B: What are the top 5 products by Advocacy rates among females who earn at least $100,000?

3. Overall Brand Perceptions

What are the top 5 brands by the overall average perceptions?

Evaluating this question can be tricky. Some of the perceptions are for positive traits, and others are for negative traits. The brand with the best overall perception would have the highest scores for the positive traits and the lowest scores for the negative traits. To aggregate these scores, we will follow a number of steps:

1. For each brand, compute the average score of each brand perception variable. In computing these averages, remove any missing values from the calculations.

2. Then, for the questions that assess negative perceptions, invert the scores to place them on a comparable scale with the positive traits. To do this, use the conversion formula:

Inverted Average Score = 10 - Average Score

3. With all of the average scores of each perception now recorded on the same scale, we can aggregate them into one measure, the Overall Average Perception of a product. For each brand, compute the mean of these scores.

4. Now rank the brands in decreasing order of their Overall Average Perception scores.

5. Show the results for the top 5 brands.

4. Gaps in Outcomes

The marketing department wants to identify products with engagement that is underperforming in some ways. The best products should have high rates of engagement across all of the outcomes, but that is not always the case.

For the purposes of this question, we will create a scoring metric that ranges from 0% to 100%. For binary outcomes (awareness, consideration, consumption, and advocacy), the score will be the percentage of the respondents who answered yes to the question among those who were asked. For outcomes on an integer scale (e.g. Satisfaction), the score will be the average value as a percentage of the maximum score. So, for instance, if the average satisfaction for a product is 7 out of 10, then its percentage rating would be 70%.

Part A: Which 5 products have the largest gap between the rate of consumption and the rate of awareness? This would correspond to a formula of Difference = 100 * (Average Consumption - Average Awareness). (Please use this exact formula. Do not use the absolute value. Focus only on the highest positive gaps.) Display a bar graph showing the 5 largest differences in decreasing sorted order.

Part B: Which 5 products have the largest gap between the rate of Awareness and the average Satisfaction (in percentage terms)? Here the formula would be Difference = 100 * (Average Awareness - Average Satisfaction). (Please use this exact formula. Do not use the absolute value. Focus only on the highest positive gaps.) Display a bar graph showing the 5 largest differences in decreasing sorted order.

5. Aggregated Engagement

How much does a respondent’s engagement depend on the product, and how much depends on the respondent? One way we might investigate this further is to see whether the respondent’s outcomes in other products has an impact on this one.

For each marketing outcome and product, we will define a user’s aggregated engagement as the average value of that outcome variable on all of the products not being modeled. For instance, consider a model of Awareness on the product Buzzdial. A single user’s aggregated engagement would then be the user’s average awareness on all of the other products (not including Buzzdial). Any missing scores should be removed from the calculation of the aggregated engagement. If a user has no measured scores in the other products, define the aggregated engagement as zero.

Part A: How much impact does respondent’s overall trends in awareness have for that person’s awareness with Buzzdial phones? To answer this question, we want to create a logistic regression model. The outcome will be the respondents’ Awareness of Buzzdial. The variables in the model will include age group, gender, income group, region, persona, and the aggregated engagement (calculated on awareness). Then, fit the logistic regression model. Display a table including the model’s Odds Ratios, 95% confidence intervals for the Odds Ratios, and the p-values.

Part B: How much impact does respondent’s overall trends in satisfaction have for that person’s satisfaction with Buzzdial phones? To answer this question, we want to create a linear regression model. The outcome will be the respondents’ Satisfaction with Buzzdial. The variables in the model will include age group, gender, income group, region, persona, and the aggregated engagement (computed on satisfaction). Display a table including the model’s coefficients, 95% confidence intervals for the coefficients, and the p-values.

Dynamic Application

Each of the specific questions in the Static Report can be generalized. A reporting engine can allow a user to select many different outcomes or subgroups to explore. In this portion, we will construct a dynamic reporting engine as a shiny application in R. The sections of the reporting engine should include user interfaces and reactive content for the scenarios presented in the Static Report.

Because the static and dynamic reports rely on common data and similar calculations, this is a good opportunity for you to build an infrastructure for the software. To that end, you should create two additional files:

constants.R

functions.R

Then many of the initial commonalities in the two reports can be unified by referring to your constant variables and functions. For each specific question in the Static Report and the Dynamic Report, you should be able to write a single function that can be called to answer it.

Your dynamic reporting engine will also be directed to the marketing and product managers throughout the client’s company. The idea is to give them tools that will help them answer novel questions and go beyond the specific information they requested. Plan your communication accordingly.

Keep in mind that this reporting engine should be designed to be used by others on their own machine. To simplify that process, please keep your files in a folder structure:

The Project's Folder (named according to your preference)

Data

Reports

The Rmarkdown files should be within the Reports subfolder. They should read the data from the Data folder using relative directories:

dat <- fread(input = "../Data/mobile phone survey data.csv", verbose = F)

Otherwise the program will have difficulty operating on other machines.

Questions

1. Respondent Variables

Depict the information produced in Q1 of Part 2. Allow the user to select which variable to explore. Then create a graph that depicts the percentages of respondents in each category for that variable.

2. Segmented Outcomes

Build a dynamic, visual display ranking the products by their outcomes in the manner of Question 2 of Part 2. The user will make the following selections:

State of engagement: Only a single state may be selected at once.

Other variables: Age Group, Gender, Income Group, Region, Persona

Then, for all of the other variables, any combination of categories may be selected, so long as at least one category from each variable is chosen. For instance, for Gender, the user may select Male only, Female only, or both Male and Female.

Then, the user should be able to select how many products to display. Once a number is selected, the outcome rates should be graphically displayed in sorted decreasing order for the top products in the selected subgroups. If 5 is selected for Awareness, then the 5 products with the highest rates of Awareness for the specified subgroup will be depicted.

3. Overall Brand Perceptions

Generate a dynamic, graphical display that allows the user to perform. a calculation of the Overall Brand Perception in selected subgroups. Much like the previous question, the user may make any combination of selections in the following variables, provided that at least one category of each variable is selected: Age Group, Gender, Income Group, Region, Persona.

Also allow the user to select how many brands should be displayed, with the top k brands depicted in decreasing sorted order. All results should display the overall average perception for the brand.

4. Gaps in Outcomes

Create a dynamic, graphical display that ranks the products in terms of the difference in averages between any two selected outcomes. The user will be allowed to make the following selections:

First Outcome: One of the outcome variables.

Second Outcome: Another outcome variable.

The difference in rates will be Difference = Average First Outcome - Average Second Outcome per product.

Number of Top Products: The user will select how many products to display.

Display Percentages: If checked, the bar graph will display the percentages for each product.

Digits: How many digits should the percentages be rounded to? 1 digit would be a number like 84.2%.

5. Aggregated Engagement

Let’s allow the user to build a model including an aggregated outcome for a specific product. The site should include the following features:

The user can select the products (1 or more).

The user can select the state of engagement as the outcome.

The user can select the other variables to include in the model. The list of choices should include the age group, gender, income group, region, persona, brand perceptions, and the Aggregated Engagement. Each person’s aggregated engagement will be calculated as the average score of the selected state of engagement across the measured values of the other products . You can give this variable a name like “Aggregated.Engagement”.

The user’s selections will then be incorporated into a model. For Satisfaction outcomes, use a linear regression. For all of the other outcomes, use a logistic regression. Then create a dynamic table showing the model’s results. For logistic regressions, this must include the Odds Ratios, 95% confidence intervals for the Odds ratios, and the p-values. For linear regressions, this must include the coefficients, 95% confidence intervals for the coefficients, and the p-values.




热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图