Marketing learning-2
Part three
1.strategies for leadership
1)operational excellence:operational competence
2)performance superiority:product differentiation
3)customer intimacy:customer respinsiveness
product attributes? customer demand? customer expectations? what is delivering? short,long-term strategies?
2.positioning process (STP)
1)segementation (segment market by using different variables) --->
2)targeting (target segment: attractiveness) --->
3)positioning (position brand)
3.market segment: is the process of dividing a market into distinct subsets,where any subset may conceivable be selected as marketing target to be reached with a
distinct market mix.
1)segmenttation methods:
①characteristics of customer (objective,subjective)
②benefits sought (关注点)
③systematic,product-related (purchaseing behavior-by channel-)
a.cohort(同生群) analysis
b.geographic segmentation (reginal):zip clustering
4.select a target segment
what makes a segment attractive?
Balancing segment attractiveness with our capability.
Continuously monitoring whether the actual buyer match the target segment
1)segment selection criteria (most attractive segment)
segment size,growth of segment,value of segment,stability,current company position within segment,ease of entry into segment,
ease of competitive entry into segment,number and strength of competitors
2)market targeting:
a.develop measures of segment attractiveness
b.select among attractive segment based on business capabilities
Part four
brand positioning
1.what is brand?
1)a proprietary trademark for a specific product or service
2)a 'contact' from the company to its customers
a promise of specific benefits,quality,and value
a relationship between firm and its customers
"A brand is no longer what we tell the consumer it is -- it is what consumers tell each other it is."
"It's not about telling and selling.It's about bringing a relationship mind-set to everything we do."
2.Positioning statement:defines the value proposition of product to the target market
1)target segment:objective user? ---> for whom?
2)piont of difference:innovative? --->reason to buy?
3)frame of reference ---> piont of parity
Positioning is implemented through all elements of the marketing mix:product,price,promotion,place
Should focus on a few key benefits (unique selling proposition)
Position must be defensible.
Position requires making choices.
3.point of parity (POP)
Associations that are not unique to the brand; They are shared with other brands.
1)category POPs:associations consumer views as necessary to be considered credible
2)Competitive POPs:associations designed to negate competitors' point of difference
4.point of difference (POD):strong,favorable,unique brand associations
similar to notion of USP (unique selling proposition)
SCA:sustainable competitive advantage (achieve an advantage in the marketplace for a prolonged period of time)
May involve:performance attributes,benefits,imagery associtions
5.POD criteria:
1)Are POD desirable to the customer? Relevant? Distinctive?
2)Can you deliver the POD the customer?
Feasibility (afforfable? possible?)
Communicability (evidence or communicate?)
sustainability (internal commiment,difficult to attack,must be consistent at any point in time and over time)
Marketing learning-2的更多相关文章
- .NET Core Ecosystem
.NET .NET Blog Application Models Web Mobile Desktop Microservices Gaming Machine Learning Cloud Int ...
- Awesome Reinforcement Learning
Awesome Reinforcement Learning A curated list of resources dedicated to reinforcement learning. We h ...
- A beginner’s introduction to Deep Learning
A beginner’s introduction to Deep Learning I am Samvita from the Business Team of HyperVerge. I join ...
- Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesian methods?
Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesia ...
- Build a Machine Learning Portfolio(构建机器学习投资组合)
Complete Small Focused Projects and Demonstrate Your Skills (完成小型针对性机器学习项目,证明你的能力) A portfolio is ty ...
- How do I learn machine learning?
https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644 How Can I Learn X? ...
- How do I learn mathematics for machine learning?
https://www.quora.com/How-do-I-learn-mathematics-for-machine-learning How do I learn mathematics f ...
- A Gentle Guide to Machine Learning
A Gentle Guide to Machine Learning Machine Learning is a subfield within Artificial Intelligence tha ...
- 机器学习基石第一讲:the learning problem
博客已经迁移至Marcovaldo's blog (http://marcovaldong.github.io/) Andrew Ng的Machine Learning比較简单,已经看完.林田轩的机器 ...
- Machine Learning and Data Mining(机器学习与数据挖掘)
Problems[show] Classification Clustering Regression Anomaly detection Association rules Reinforcemen ...
随机推荐
- Android 仿电商app商品详情页按钮浮动效果
1.效果图如下: 这效果用户体验还是很酷炫,今天我们就来讲解如何实现这个效果. 2.分析 为了方便理解,作图分析 如图所示,整个页面分为四个部分: 1.悬浮内容,floatView 2.顶部内容,he ...
- iOS - 协议实现的例子
在实际开发中,协议的应用非常广泛,以下是实际应用的例子. 1.协议的定义: myProtocolDelegate.h // // myProtocolDelegate.h // zlwPlayerAp ...
- php 实现格式化数字功能
php 实现数字格式化功能 /** * @param $num 数字 * @param int $decimal 精度 * @param int $point_len 分隔位长度 * @return ...
- Oracle添加自增长字段方法步骤
第一步:创建自增长序列 CREATE SEQUENCE ZH_ALARM_INFO_SEQ--自动增长列 INCREMENT BY 1 -- 每次加几个 START WITH 1 -- 从1开始计数 ...
- cms-最近更新
在这一讲中有几个很重要的地方需要注意: 1.在查询帖子的时候需要把帖子类型id带到帖子类型表中把类型查询出来 2.在字帖子查询语句中用limt限制查询那个阶段的帖子 3.在界面显示的时候需要用到字符串 ...
- ABAP Netweaver, Hybris Commerce和SAP 云平台的登录认证
ABAP Netweaver 在事务码SICF里选择一个服务,在明细页面对Procedure字段点击F1,查看Logon Procedure的帮助文档. 通过这个链接打开对应的帮助文档,可以看到下列七 ...
- UVA1363 - Joseph's Problem(数学,迷之优化)
题意:给出n和k,1≤n,k≤1e9,计算 切入点是k/i 和 k/(i+1)差距不大.令pi = k/i, ri = k%i.如果pi+1 == pi,那么ri+1 == k - pi(i+1) = ...
- Ubuntu中文乱码问题
版本 Ubuntu 14.1 系统安装完成后,中文都显示成了乱码 终端或者命令行里输入 sudo apt-get install zhcon 等安装完即可~ 运行的时候记得要加载vgz驱动和utf8支 ...
- python_36_文件操作4
f=open('test.txt','a',encoding='utf-8') #f.truncate()#截断,不指定将清空所有内容 f.truncate(5)#从头开始截断,截断5个字符 注:使用 ...
- TypeScript task
Ctrl+Shift+B 生成 js 文件.