Free Essay

Business Analytics Handout

In:

Submitted By yxjxy
Words 2010
Pages 9
QTM 3650 – Prof. Rick Cleary Class #9–Mon. 2/24/14

I.) Logistics
- Return and discuss homework problems 12-14; notes below. Collect problems 15-16.
- Final exam time for our class: Wednesday 5/7, 3:30 – 5:30 PM, Gerber 103.
- Review schedule for upcoming two weeks:

10Weds. 2/26 | Classification and Regression TreesProject 1 dueTake home part of Exam #1 assigned | Text Chapter 9 | 11Mon. 3/3 | Finish Chapter 9Catch up/review/special topics/Visualization tools | - | 12Weds. 3/5 |
EXAM #1In class portion and take home due | - |

- A note on ground rules for the in-class exam: Each student may bring one 8.5” by 11” review sheet to the exam with them; OK to write on both sides. The sheet will be turned in with the exam. No electronic devices of any kind except for a calculator that can do simple arithmetic. It’s OK to use a hand-held device (not a laptop) as a calculator as long as it is used only for that purpose. If students don’t have a calculator, Prof. Cleary will have a couple on hand, or students may use the podium computer to do calculations only in Excel. Any connection to the internet or communication to others (texting, etc.) during the exam will be considered an academic integrity violation.
- Today’s topics: Finish Chapter 8 on the naïve Bayes estimator and review the Chi-Squared test of independence.

II.) Comments on homework problems 12-14.

Problem 12.) While we reviewed this last class, enough people missed it on problem 12 that it’s worth saying again. When we have a regression model of the form:

y = b0 + b1x1 + … + bpxp

We predict a value for y (the ‘y-hat’) by plugging in the x’s for the new observation into the equation. Once we have that value, if we want a range where it is likely to fall, an approximate 95% prediction interval for the value of y for this new observation is:

y ± 2s, where s is the standard error of the residuals.

On the homework part (c.) many students used just one standard deviation, or used the standard deviation of all salaries, not the residual standard deviation from the regression model.

Problem 13.) In part (b), some students lost a point for not picking up this important connection between the two-sample t-test and the same data run is a regression with one categorical predictor: The coefficient in the regression equation is exactly the difference in means between the two groups. In this case, the regression coefficient of -2101 has an easy to interpret meaning: On average, faculty with a PhD had salaries $2101 lower than those without PhDs.

Problem 14.) Most people correctly normalized (standardized) the remaining variables and computed the distances correctly, but then there were two common errors:
-Several students ordered the scores from largest to smallest, inadvertently comparing the Celtics to the team most different, rather than most similar to themselves.
-About half the class misinterpreted how to do classification in the k-nn approach. When doing classification, we simply count how many of the nearest neighbors fall in each category. In problem 14, two of the three nearest neighbors for the Celtics did not make the playoffs, thus our 3-nn model incorrectly predicts that the Celtics would miss the playoffs. (It’s even worse with k = 5.) We do NOT need to first do the stop of computing the mean number of wins for the Celtics. That’s an estimation problem.

III.) Today’s topics: Overview of coverage so far, finishing Chapter 8 on Naïve Bayes’ Estimates, reviewing the Chi-Squared test of independence

We begin with a quick look at ‘where we are’ from a modeling perspective. In the models we’ve studies so far we have a single variable that we are interested in as a response, and we have a set of predictor variables. The table below lists choices of tools to use. As the semester goes on we’ll fill this in further and also do some models where we are not just trying to name a single predictor.

| Categorical Response | Numerical Response | Categorical Predictors only | -Pivot tables-Chi-squared test -Exact/Naïve Bayes | -Side by side box plots-Two-sample t (if single cat. pred. with only 2 values.)-ANOVA or regression with dummy variables | Numerical Predictors (with or w/out categorical pred) | -Side by side box plots-k-nn for classification-CART | -Scatter plots-Regression-k-nn for estimation |

Now back to Chapter 8: Last time we looked at the ‘exact Bayes’ approach in which we classified a new observation based on finding exact matches for the given set of categorical predictors. Not surprisingly, this is very difficult to actually accomplish in practice. So we move on to a more broadly applicable generalization, the “Naïve Bayes” approach, which uses the entire data set as described below. We work through this using the data from Homework Problem 15. (Compare to algorithm on text p. 152.)

Suppose our possible response has m different categories (called classes in the text) that a new record could be assigned to, and that there are p categorical predictors in the problem. (For problem 15, what are m and p?)

Now, for each class, we find the probability of being in that class for the data in the new record, one variable at a time. So for problem 15 where we have two classes (0…rejected, 1…accepted), we find the probability that our new record (female (1), no AP(0), not a legacy (0), not being recruited) belongs in each class by each variable. To do this we need the pivot tables in Excel, or we can count in Minitab or R. When we have done this for each variable for a certain class, we multiply all these probabilities together and also times the probability of being in that particular class. When we repeat this every class we have exactly set up Bayes’ rule as discussed last time! To use the Problem 15 notation:

(***) P(A=1|1, 0, 0, 0) =

PA=1*Pgender=1A=1*PAP=0A=1*Pleg=0A=1*P(rec=0|A=1)Sum of term above+similar term for A=0 case

This step includes an assumption of independence between the predictors.

So let’s step through this for Problem 15! Here’s the R-command we need to get, for instance, the recruiting table, with the actual data table following.

Admits <- read.csv("C:\\Users\\Student\\Documents\\QTM3650S14\\HWProb15ExactBayesData.csv", header = T) attach(Admits) Admittable <- table(Admits$Coach,Admits$Admit) # 1st var is rows, 2nd is columns.
Admittable #Typing the name of the table prints it out in console

0 1 0 25 28 1 7 15

Which piece of the equation (***) above can we get from this table? Note that R doesn’t like Gender (M=0), the title of Column 1 on the problem 15 Excel sheet, as a variable name… we have to change that! Gathering every piece, we find that we can update (***) to say:
P(A=1|1,0,0,0) =
(43/75)*( 14/43)*(33/43)*(20/43)*(28/43)4375*1443*3343*2043*2843+3275*532*2532*2632*(2532) = .5675 … a pretty good chance of being accepted! (Note: Compare to exact Bayes’ solution from problem 15?)

We end Chapter 8 with another great Bayesian example that you might know, but probably haven’t thought about in a modeling context.

Now, we review the chi-squared test of independence. This is a statistical test used to determine if the row and column variables in a pivot table are statistically independent of each other. It is not usually a ‘big data’ test, because with very large samples it tends to lead to statistically significant results that may not be practically significant. But it is a very important tool to have for an analyst wanting to make a quick decision about statistical significance in a pivot table.

The data needed to perform the chi-squared (χ2) test is just the ordinary pivot table, also known as a contingency table, in which the entries are the observed frequencies of data that falls into each combination of row and column variable. For each cell, we also compute an expected frequency that gives the value we’d expect if the row and column variables were in fact independent.

The expected value for any cell is computed as follows: ((row total) * (column total))/n, where n is the total sample size.

Important: A chi-squared test should not be used unless the expected value for each cell is at least five. If the table has many categories and some cells have expected values less than five, we can collapse into a small number of rows and/or columns by combining groups.

The calculated chi-squared statistic is a measurement of whether the actual data frequencies we observed were in fact close to what we would expect if the row and column variables were independent, and is computed as follows:

2 calc = ((observed – expected)2 / expected),

where the sum is over every interior cell in the table, If r is the number of categories for the row variable and c is the number of categories for the column variable, we will have to add up this term for r*c cells.

The hypotheses we are testing are:

H0 : The row variable is independent of the column variable. Vs. Ha : The variables are not independent.

Large values of the chi-squared statistic indicate that we should reject the null, and we can use Excel to get a p-value. (Use the command CHIDIST(x,d) where x is the computed value from the table and d is the degrees of freedom.) The degrees of freedom is given by (r-1)*(c-1). We explore the use of the chi-squared test on some of the data from problem 15.

For problem 15, if we want to use R to carry out the chi-squared test to see if being recruited by a coach is independent of being admitted, we simply need to use the command:

> chisq.test (Admittable)

Pearson's Chi-squared test with Yates' continuity correction

data: Admittable
X-squared = 0.936, df = 1, p-value = 0.3333

We compute this step by step in Excel to insure that we have the idea.

IV.) Today’s fun event: Another application of Bayes’ Rule: The famous Monty Hall, “Let’s make a deal’ problem, aka the “Prisioner’s Dilemma.”

V.) Homework due at the START of class #11, Monday 3/3/14 … Note no homework due on Wednesday 2/26 when project is due.

Please bring a hard copy, neatly typed or carefully hand written.

Problem 17.) Naïve Bayes estimation: Problem 8.1, page 162, parts c, d and e only. The data for this problem is on the course Blackboard site. For simplicity, we use only the first 1000 records in the data set, and we consider these the training set. You may compute the pivot tables in any software you like, though of course I always encourage students to keep learning R.

Problem 18.) Continuing with the data set from problem 17, carry out a chi-squared test of independence to decide if the variable “PersonalLoan” is independent of the variable “CreditCard” Carefully state the null and alternative hypotheses, find the chi-squared value and the p-value, and then state the business conclusion carefully in a sentence.

Problem 19.) Much of our class on Monday 3/3 will consist of review for the in-class mid-term. Write a good, detailed question that you would like covered in that review. If possible please reference a particular homework problem, class example or page of the text to help make the question specific.
Not as good: “Could you go over k-nn for classification?”
Better: “Can you explain the voting procedure for k-nn classification like we had on problem 14 for the playoffs?”
I will randomly choose questions to go over in class on 3/3 until we run out of time.

Similar Documents

Premium Essay

Brief Overview of Business Intelligence and How Walmart Uses It

...Brief Overview of Business Intelligence and How Walmart Uses It Walmart is the biggest retailer in the world and handles more than one million customer transactions every hour and generates more than 2.5 petabytes of data storage (Venkatraman & Brooks, 2012). To put this into perspective, this data is equivalent to 167 times the number of books in America’s Library of Congress (Venkatraman & Brooks, 2012). So how can Wal-Mart use this massive amount of data and what useful information can this data provide? This paper will provide a brief overview of the importance of Business Intelligence (BI) and how the largest retailer in world, Walmart, is using it. BI platforms help management to truly understand its customer base and deliver individualized products and services (Brannon, 2010). When BI tools and analytics are used effectively, managers and decision makers can yield an all-encompassing view of the company, its position in the market, and its potential and perspectives (Albescu, and Pugna 2014). BI is best explained as a systematic process not found in a magazine, online or in a knowledge database. An organization that doesn’t have a viable BI capacity is making decisions without key information in this competitive market (Thomas, 2001). Walmart has more customer connections than any retailer in the world, from online activity to in-store purchases, and even social mentions (300,000 social mentions per week) (SAS Institute Inc.). Due to the abundance...

Words: 867 - Pages: 4

Premium Essay

Cognos Ibm

...Chapter 12 Enhancing Decision Making Case 2: IBM and Cognos: Business Intelligence and Analytics for Improved Decision Making Tags: business decision making; business intelligence software; decision support systems; management reporting systems; executive dashboards; mobile delivery platforms. Summary In this video from the National Association of Broadcasters (NAB), Dan Fulwiler and Steve Segalewitz from IBM, discuss how understanding your online data more clearly can improve decision-making. Video demonstration of IBM/Cognos BI software applications. In the accelerating media industry, discovering relevant business insights within the chaos of available information can lead to substantial competitive advantage. IBM Business Intelligence and Analytics is designed to integrate all data providers and in-house sources to reveal timely and actionable business insights. The software collects, connects and leverages information from consumers to suppliers. L= 5:06 URL: http://www.youtube.com/watch?v=NI59ZgyQqBc Case IBM has been known for most of its recent history as the world's largest computer company. With over 388,000 employees worldwide, IBM is the largest and most profitable information technology employer in the world. It is still selling computers today, and is still one of the biggest computer companies in the world, and it has also been known to produce very efficient computers as well. IBM holds more patents than any other U.S. based technology company...

Words: 760 - Pages: 4

Premium Essay

Project Management

...Hanns-G LLC, Have continued their investigation and Data Analyzing of the current business processes that have concurrently been in progress at Star plus Manufacturing Inc. Through our Time Spend at Star plus manufacturing Inc., we have conducted the following Business Analytics including but not limited too; Analyzing Qualitative Data, Analytics, Business Intelligence, Test and Learn, Business Processes, Statistics and Customer Dynamics. While Analyzing Qualitative Data; we have conducted Open-ended Questions, accepted written comments on questionnaires in order to generate Single word opinions, Brief Outlooks on company environment. We have also found some finding though daily business observations. During our Analytics practices, we have been able to develop optimal or realistic decision recommendations based on insights derived through the application of statistical models and analysis against existing and/or simulated future data. Business intelligence used a well-established process in guiding organizational change through using Computer-Based Techniques to identify, extract and analyze business data, such as Sales revenue by individual departments and products by each ones associated Costs and Income. Test and Learn methods in order to define the impact that, current strategies are impacting customers and clientele. Business Process in order to construct a representation of your current business processes. Statistic information used to find the Mean or median to calculate data...

Words: 521 - Pages: 3

Premium Essay

Business Analytics

...Introduction Sprint has nearly 54 million customers and offers a host of products for consumers, businesses and government. The company recently began using analytics tools to try to make sense of the mountains of data created by Sprint network users on a daily basis. With approximately 70,000 employees worldwide and nearly $27 billion in annual revenues, Sprint is widely recognized for developing, engineering and deploying state-of-the-art network technologies, including the United States' first nationwide all-digital, fiber-optic network and an award-winning Tier 1 Internet backbone. Sprint provides local voice and data services in 18 states and operates the largest 100-percent digital, nationwide wireless network in the United States. The decision to focus our project on Sprint was based on a couple of factors. Sprint is currently the 3rd largest telecom operator in USA and with the recent take over by SoftBank the prospects to grow look promising. This provides a clear opportunity to help the business grow using analytics. Secondly because of our connections in the company we were able to get more information on Sprint’s analytics strategy and future plans. Recommendations Sprint Telecom is part of an industry, which is one of the largest providers of data in the world. Sprint’s initial big data steps have been in the right direction. They have successfully used their current data sets for quick profits and short-term results. It is now time to take the jump...

Words: 652 - Pages: 3

Premium Essay

Management 303 Swot Analysis

...100 academic, government and corporate entities, it was evident that success as an independent operation was possible. Goodnight, Sall and two other facility members decided to leave NCSU and develop SAS Institute Inc. - – a private company "devoted to the maintenance and further development of statistical analysis systems." The Company’s mission is to deliver solutions that drive innovation and improve performance ("SAS Company Stats," n.d.). II. Organizational Strengths and Weaknesses A. First organizational Strength SAS Institute offers analytical software in over 24 industries from Automotive to Utilities. They have over 350 enterprise solutions, products, insights and trends. SAS software is installed at more than 75,000 business, government and university sites ("SAS Company Stats," n.d.). The company also has customers in over 141 countries and nearly 14,000 employees worldwide....

Words: 1965 - Pages: 8

Premium Essay

Big Data

...developments in data analytic. We treat some strategic, ethical, and technical dimensions of big data. The technical foci of the course include data structures, data warehousing, Structured Query Language (SQL), and high-impact visual displays. The principal objective of the course is to help students build understanding of data as an essential competitive resource, and acquire advanced computer skills through cases and hands-on applications. Assignments and classroom time will be devoted to both to analysis of current developments in analytics and to gaining experience with current tools.  Davenport , Thomas H. and Harris, Jeanne G. Competing on Analytics: The New Science of Winning. Cambridge: Harvard Business School Press, 2007. ISBN 978-1422103326. Available for purchase at the bookstore.  There is a required on-line course pack available for purchase at the Harvard Business Publishing website at this URL: https://cb.hbsp.harvard.edu/cbmp/access/23455671 This link is also available on LATTE . See last page of Syllabus for course pack contents.  Other readings as posted on LATTE site. Learning Goals and Objectives Overview Required Reading Upon successful completion of this module, students will:      Think of data as a strategic resource in business. Understand the logic of complex data queries in the context of on-line business research sources. Be familiar with current developments in Big Data, business intelligence, and competitive analytics. Be able to design...

Words: 2130 - Pages: 9

Premium Essay

Big Data

...developments in data analytic. We treat some strategic, ethical, and technical dimensions of big data. The technical foci of the course include data structures, data warehousing, Structured Query Language (SQL), and high-impact visual displays. The principal objective of the course is to help students build understanding of data as an essential competitive resource, and acquire advanced computer skills through cases and hands-on applications. Assignments and classroom time will be devoted to both to analysis of current developments in analytics and to gaining experience with current tools.  Davenport , Thomas H. and Harris, Jeanne G. Competing on Analytics: The New Science of Winning. Cambridge: Harvard Business School Press, 2007. ISBN 978-1422103326. Available for purchase at the bookstore.  There is a required on-line course pack available for purchase at the Harvard Business Publishing website at this URL: https://cb.hbsp.harvard.edu/cbmp/access/23455671 This link is also available on LATTE . See last page of Syllabus for course pack contents.  Other readings as posted on LATTE site. Learning Goals and Objectives Overview Required Reading Upon successful completion of this module, students will:      Think of data as a strategic resource in business. Understand the logic of complex data queries in the context of on-line business research sources. Be familiar with current developments in Big Data, business intelligence, and competitive analytics. Be able to design...

Words: 2130 - Pages: 9

Premium Essay

Syllabus for Qtm2000

...QTM2000 Case Studies in Business Analytics Spring 2016 Section 01:T/Th 9:45AM-11:20AM – Gerber 102 Section 02:T/Th 11:30AM-1:05PM – Gerber 102 Instructor: Denise Sakai Troxell Office: Babson Hall 318 Office hrs: By appointment only | Phone: (781) 239-6309e-mail: troxell@babson.edu | Course Description (from catalog): This course builds on the modeling skills acquired in the QTM core with special emphasis on case studies in Business Analytics – the science of iterative exploration of data that can be used to gain insights and optimize business processes. Data visualization and predictive analytics techniques are used to investigate the relationships between items of interest to improve the understanding of complex managerial models with sometimes large data sets to aid decision-making. These techniques and methods are introduced with widely used commercial statistical packages for data mining and predictive analytics, in the context of real-world applications from diverse business areas such as marketing, finance, and operations. Students will gain exposure to a variety of software packages, including R, the most popular open-source package used by analytics practitioners around the world. Topics covered include advanced methods for data visualization, logistic regression, decision tree learning methods, clustering, and association rules. Case studies draw on examples ranging from database marketing to financial forecasting. This course satisfies one of the...

Words: 1583 - Pages: 7

Premium Essay

Assignments 3

...reports, memos, letterheads, and other written business papers. Word has several key built-in functions, including bold, italics, underlining, super- and sub-script, paragraph and line formatting, bullet points, and so forth. The page layout function allows users to customize the size and format of the paper they are trying to create. Flowcharts * Microsoft Word offers a multitude of shapes, lines, and symbols for use in crafting flowcharts. In contrast to typical written documents, flowcharts are visual diagrams meant to direct a reader's attention to the process or flow of a project. Word's various options allow you to customize the layout and look of flowcharts, as well as type text inside and next to shapes, insert images, and so on. * Mailing Labels * A very widespread use of Microsoft Word in the workplace is in typing and printing mailing labels. Word offers a preset layout in the correct size to print on label paper, which makes mailing much easier than the traditional method of writing labels by hand or typing each label individually on a typewriter. You can also customize the label format for different size labels, as well as laying out text to be printed directly on envelopes. Letters Microsoft Word enables you to create a range of correspondence from a simple office memo to mail-merged form letters with hundreds of addresses. Special programming in the software senses when you are typing a business letter and will pop up a guide to help format the...

Words: 1550 - Pages: 7

Premium Essay

Resource

...Organizational Theory: Determinants of Structure -------------------------------------------------------------------------------- The objective here is to understand why organizations have the structure that they do. By "structure" I mean things like degree and type of horizontal differentiation, vertical differentiation, mechanisms of coordination and control, formalization, and centralization of power. See handouts page for more information on organizational structure. According to Taylor, Fayol, Weber and other classical theorists, there is a single best way for organization to be structured. Yet organizations vary considerably on structural attributes. The objective of much research has been to understand what determines these variations. Is it random or systematic? Are some organizations simply less perfect than others, or are different designs better for different situations? Contingency Theory In contrast to the classical scholars, most theorists today believe that there is no one best way to organize. What is important is that there be a fit between the organization's structure, its size, its technology, and the requirements of its environment. This perspective is known as "contingency theory" and contrasts with the perspective of classical theorists like Weber, Taylor, Fayol, etc. who thought that there probably was one way to run organizations that was the best. Size This refers to capacity, number of personnel, outputs (customers, sales), resources...

Words: 1692 - Pages: 7

Premium Essay

Syllabus

...and Thursday, 10 – 11 am, 524 Alter Hall, Main Campus Tel: (215) 204-3561; Email: susan.mudambi@temple.edu Home Page: http://astro.temple.edu/~smudambi/ Course Description Digital technologies have become an integral component of daily life for many firms and consumers. Although digital marketing is an important part of business strategy, the dynamic nature of technology and consumer culture raises many strategic and social challenges. This course examines the theories and concepts underlying the use of information and communication technology by firms and consumers, and challenges students to critique and utilize digital tools and social media, including Twitter, Facebook, online reviews, blogs, paid search, digital advertising, and online promotions. The identification of critical success factors and best practices are central to the course, as are quantitative methods for analyzing marketing effectiveness. The course examines the theory and realities of digital marketing in both business-to-consumer (B2C) and business-to-business (B2B) markets. Course Prerequisite: Marketing Management (MKT 2101) Required Readings: Ivey business cases include: Jill’s Table; Mission Impossible; and Tesco’s Virtual Store. Other readings available free through Blackboard. Students are expected to budget $40 - $60 for cases, Google AdWords, color printing, and other course-related materials. Learning Objectives * Understand theories and concepts underlying the...

Words: 1979 - Pages: 8

Premium Essay

Tesco - Strategic Planning

...External factors affecting the organization...................................................................5 Macro-environmental level: Pestle analysis is applied ...............................................12 Major Changes taking place in the external environment.................................... 12 1.3.2. Industry Level: Porter five forces.........................................................................................13 2. Review of Tesco Existing Plans ................................................................................. 16 2.1. Tools to analyze the effect of current business plan............................................... 16 2.2. Position of Tesco in its current market ....................................................................... 17 2.3. Competitive Strengths and weaknesses of current business strategy ............. 19 3. Consideration of Strategic Options.......................................................................... 20 3.1.1. 3.1. Market Penetration ....................................................................................................................21 Modeling tools to develop strategic options for Tesco .......................................... 20 3.1.2. 3.1.3. 3.1.4....

Words: 9652 - Pages: 39

Free Essay

Jit2 Task 1 Instructions

...to company operations and assesses and recommends strategies for maintaining organizational stability and continuity in the global marketplace. 326.4.3: Contingency Planning ­ The graduate develops and analyzes organizational contingency plans for responding to sudden and rapid environmental changes. 326.4.4 Risk Evaluation and Mitigation ­ The graduate evaluates internal and external risks and recommends risk mitigation strategies and techniques to an organization. 326.4.5: Organizational Risk Management Programs ­ The graduate develops and assesses enterprise risk management programs for organizations and incorporates industry best practices in risk management processes and programs. 326.4.6: Risk Optimization ­ The graduate uses risk control and risk optimization analytics and strategies to maximize returns relative to risk for organizations. 329.5.3: Ethics and Information Technology Security ­ The graduate makes ethical decisions for the use of...

Words: 923 - Pages: 4

Premium Essay

Strategic

...DDBA 8160: Business Strategy and Innovation Student Support and Calendar Information: So that you have all key information available to you offline, it is highly recommended that you print out the following items for your reference: * This Syllabus * Term Calendar * Instructor and Student Support Info Course Number and Title DDBA 8160: Business Strategy and Innovation Credits 3 credits Catalog Description This course focuses on the development and implementation of business strategies that enable competitive advantage, with an emphasis on understanding the current environment and innovation in which the organization competes and forecasting how that environment may change. Course assignments focus on the practical application of writing and critical-thinking skills and the integration of professional practice at the doctoral level. Learning Objectives Stated in Terms of Learning Outcomes By the end of this course, you will be able to: * Demonstrate an understanding of the evolution of traditional concepts of strategic management and thinking, including models of business-level competitive advantage * Evaluate contemporary challenges to traditional strategic management and thinking models * Apply systems-thinking principles to the framing and analysis of business problems and opportunities * Develop innovative business strategies designed to achieve sustainable solutions * Synthesize principles of sustainable strategic management...

Words: 5304 - Pages: 22

Premium Essay

Bsa 310 Mcbride Marketing Paper

...McBride Marketing Paper BSA/310 April 14, 2014 McBride Marketing Paper The marketing of an organization and that marketing’s success plays an integral role in the overall success of the organization. Marketing involves all of the business functions that support the customer value exchange including your advertising, branding, public relations, market research, corporate promotion, image management, and customer loyalty to brands and products. It’s everything your business does to acquire customers and maintain a positive relationship with them. Ultimately, the purpose and goal of your marketing is to match your services to the people who need and want them, thus ensuring your profitability. Now that you’re clear on all that marketing entails, let’s understand why it should be an important aspect of your business. The key piece of marketing’s overall goal is that it helps ensure your organization’s profitability. As business professionals, I’m sure I don’t need to explain this in much detail; without profitability an organization and its operations are not sustainable. We put those pieces together and we understand that big picture, a lack in marketing could result in the closure of your precious company. McBride Financial no doubt understands the importance of marketing, you’ve after all expressed a desire to expand your customer base and wish to do so through marketing. If McBride takes the right approach to marketing, you can absolutely expand your customer base...

Words: 961 - Pages: 4