SlideShare a Scribd company logo
1 of 17
Download to read offline
NLP	
  +	
  Brandwatch Analytics
Deriving	
  insights	
  from	
  social	
  conversations using Natural	
  
Language	
  Processing and	
  the	
  Brandwatch Analytics	
  API
What	
  we	
  will	
  cover	
  today
What	
  do	
  we	
  want	
  to	
  answer?	
  (and	
  why)
Our	
  approach	
  to	
  social	
  data
Leveraging	
  the	
  Brandwatch API to	
  extract	
  data	
  
Deriving	
  insight	
  from	
  personas	
  
Identifying	
  key topics	
  of	
  conversation
Segmenting	
  on	
  those	
  topics	
  to develop	
  personas
Replicating	
  back	
  into	
  Brandwatch
What	
  we’re	
  working	
  on	
  next
3 |
§ Provides	
  an	
  in-­‐situ	
  portrait	
  based	
  on	
  exhibited	
  behavior	
  not	
  
on	
  elicited	
  feedback
§ Highly	
  relevant	
  as	
  it	
  can	
  be	
  updated	
  in	
  near-­‐real	
  time
§ Enables	
  research	
  budget	
  to	
  be	
  focused	
  on	
  insights	
  rather	
  
than	
  data	
  collection
Social	
  intelligence	
  enables	
  new	
  ways	
  of	
  
answering	
  traditional	
  business	
  questions	
  
and	
  driving	
  data	
  driven	
  actions
What	
  are	
  the	
  sort	
  of	
  questions	
  we	
  want	
  to	
  answer?	
  
How	
  can	
  a	
  financial	
  services	
  company	
  
reach	
  out	
  to	
  cyclists?
How	
  can	
  we	
  get	
  small	
  business	
  owners	
  
to	
  engage	
  with	
  their	
  cell	
  phone	
  
provider	
  online?
What	
  is	
  the	
  customer	
  journey	
  for	
  a	
  
motorcycle	
  enthusiast?
4 |
There	
  are	
  seven	
  stages	
  to	
  the	
  analytical	
  process	
  of	
  
developing	
  utilizing	
  personas	
  with	
  social	
  data
Our	
  approach	
  to	
  working	
  with	
  social	
  data
Extract
Develop	
  
the	
  dataset
Linguistic	
  
model
Segment Analyze TrackQuery	
  data
Prepare
§ Need	
  to	
  truly	
  understand	
  your	
  data	
  before	
  
any	
  analysis
§ Iterative	
  query/dataset	
  development	
  
through	
  virtual	
  ethnography
§ Use	
  the	
  Brandwatch API	
  to	
  extract	
  the	
  full	
  
text	
  mentions	
  
Model
§ Employ	
  Natural	
  Language	
  
processing	
  to	
  model	
  how	
  people	
  
talk
§ Use	
  either	
  qualitative	
  methods	
  
or	
  clustering	
  algorithms	
  to	
  
segment
Understand
§ Through	
  visualization	
  and	
  
analysis	
  we	
  can	
  understand	
  
thoughts,	
  feelings	
  and	
  
preferences
§ Replicate	
  back	
  into	
  Brandwatch
as	
  sub-­‐categories	
  to	
  monitor	
  on	
  
an	
  ongoing	
  basis
5 |
• Provide	
  the	
  basis	
  for	
  a	
  ‘corpus’	
  in	
  NLP	
  jargon	
  from	
  which	
  
to	
  model
• We	
  have	
  built	
  a	
  library	
  of	
  functions	
  using	
  	
  python	
  to	
  
retrieve	
  and	
  format	
  the	
  data
• The	
  output	
  format	
  of	
  the	
  API	
  is	
  in	
  JSON	
  so	
  there	
  is	
  some	
  
work	
  to	
  turn	
  it	
  into	
  a	
  table	
  we	
  can	
  read	
  and	
  use
Extracted	
  BW	
  data	
  has	
  many	
  use	
  cases,	
  today	
  we	
  
will	
  be	
  primarily	
  focused	
  on	
  full	
  text	
  mentions
Leveraging	
  the	
  API	
  to	
  extract	
  the	
  dataset	
  
Example	
  API	
  function:
def get_mentions_query_URL(  startdate,enddate,project_id,  
query_id,access_token,fullText):
query_def =  "data/mentions”  
end_date =  "endDate="  +  end_date +  "T00:00:00.000Z”
start_date =  "startDate="  +  start_date +  
"T00:00:00.000Z"
request_URL="https://newapi.brandwatch.com/projects/"  
+str(project_id)  +  "/"  +query_def
if fullText ==  True:
request_URL =  request_URL +  "/fulltext"
request_URL =  request_URL +  "?"  +  "queryId="  +  
str(query_id)  +  "&"  +  start_date +  "&"  +  end_date +  
"&pageSize=5000"  +  "&access_token="  +  access_token
return request_URL
Read	
  more:	
  blog.tahzoo.com/tech-­‐thursday-­‐brandy-­‐py-­‐a-­‐python-­‐library-­‐for-­‐brandwatch/
Github:	
  https://github.com/BillmanH/brandy.py/
6 |
Linguistic	
  model	
  -­‐ Identifying	
  the	
  topics	
  in	
  a	
  conversation
pumpkin
sugar
HEALTHY	
  LIVING
PUMPKIN	
  SPICE
CONVERSATIONS
TEXT	
  ANALYSIS
TOPIC	
  
MODEL
1 Break	
  down	
  each	
  conversation	
  into	
  the	
  words	
  and	
  
sentences	
  to	
  probabilistically	
  assess	
  each	
  word’s	
  
relationship	
  with	
  each	
  other	
  word
2 Analyze	
  to	
  uncover	
  the	
  most	
  common	
  “topics”	
  of	
  
conversation
3 Run	
  clustering	
  analysis	
  to	
  segment	
  on	
  topics
4 Iterate	
  on	
  topics	
  until	
  we	
  develop	
  a	
  solid	
  segmentation
Four	
  steps	
  to	
  targeting	
  personas
7 |
("pumpkin	
  spice	
  latte")	
  
NOT
("vue pack"	
  OR "value	
  pack"	
  OR	
  "how	
  to	
  make"	
  OR	
  
"win	
  free"	
  OR "latte	
  cake" OR	
  "black	
  friday"	
  OR "pack	
  
of"	
  OR "My	
  TL	
  right	
  now	
  iOS7	
  Hump	
  Day	
  iOS7"	
  
OR
site:(twitter.com OR kdvr.com OR fox59.com	
  OR	
  
news.google.com))
An	
  example:	
  who	
  discusses	
  Pumpkin	
  Spice	
  Lattes?
Our	
  query…
Excluded	
  because	
  of	
  
irrelevant	
  	
  recipes	
  
Purposefully	
   broad	
  
query	
  to	
  capture	
  full	
  
range	
  of	
  
conversations
Exclude	
  Twitter	
  as	
  it	
  
would	
  overwhelm	
  the	
  
results	
  and	
  we	
  couldn’t	
  
export	
  full	
  text	
  mentions
8 |
Do	
  it	
  
Yourself
Starbucks Nutrition
Healthy	
  
living
Style Urban	
  living restaurants PS	
  recipes
Amazing	
  
treat
Pumpkin	
  
Spice	
  
ingredients
PS	
  Flavor
Coffee	
  at	
  
home
people pumpkin grams squash fall city binary milk love food pumpkin home
make spice fat healthy wear place victoire pumpkin time hari spice inch
things latte calories recipe fashion food restaurants coffee day babe pie coffee
life starbucks sugar food boots park options sugar good ingredients latte green
time fall registers recipes style street time recipe back sugar flavor set
thing psl data copycat color local pst spice week science flavored keurig
feel drink saturated favorite wearing free visit cup great cancer seasonal count
find coffee carbs soup dress art trading make home organic year price
years today sodium paleo black event restaurant cream made found taste mountain
world lattes pos version top restaurant september syrup work chemical food make
The	
  topics	
  
9 |
DIY	
  Example:
“I	
  get	
  annoyed	
  when	
  a recipe	
  calls	
  for	
  pumpkin	
  pie	
  spice.	
  	
  
It's	
  not	
  that	
  people	
  use	
  it	
  that	
  annoys	
  me,	
  it's	
  the	
  mere	
  
existence	
  of	
  it	
  as	
  a	
  single	
  spice.	
  	
  …	
  I	
  guess	
  I'm	
  just	
  a	
  purist	
  
at	
  heart.	
  	
  Since	
  I	
  haven't	
  seen	
  pumpkin	
  pie	
  spice	
  here	
  in	
  
France	
  I	
  now	
  need	
  to	
  make	
  our	
  own	
  pumpkin	
  pie	
  spice	
  
mixture,	
  and	
  then	
  figure	
  out	
  the	
  right	
  proportions	
  for	
  my	
  
dreamboat	
  pumpkin	
  spice	
  latte.	
  	
  Nothing	
  that	
  a	
  Google	
  
search	
  won't	
  solve,	
  but	
  annoying	
  nonetheless.	
  	
  And	
  don't	
  
worry,	
  when	
  I	
  do	
  I'll	
  be	
  sure	
  to	
  share	
  it	
  with	
  you.	
  	
  Maybe	
  
you'll	
  even	
  get	
  some	
  rainbows.	
  	
  Fingers	
  crossed.	
  
An	
  example	
  of	
  how	
  this	
  analysis	
  works
Treat/Reward	
  Routine	
  Example:
“I	
  thought	
   splurging	
  on	
  a	
  venti pumpkin	
  spice	
  latte	
  would	
  
make	
  me	
  feel	
  better	
  this	
  morning,	
  (or	
  maybe	
  even	
  the	
  
three	
  cups	
  of	
  green	
  tea	
  with	
  lotsa honey	
  in	
  it!)	
  ...but	
  as	
  
my	
  ears	
  pop,	
  my	
  nose	
  runs,	
  and	
  my	
  throat	
  feels	
  like	
  
somebody	
  took	
  sandpaper	
  to	
  it	
  last	
  nite,	
  I	
  guess	
  it's	
  time	
  
to	
  finally	
  suck	
  it	
  up	
  &	
  take	
  some	
  meds	
  ó¾Œ®ó¾ ‚	
  I	
  blame	
  
you!	
  Rodney	
  Deal!!	
  Haha kidding	
  kidding	
  ;	
  )
Below	
  are	
  two	
  pieces	
  of	
  verbatim	
  content	
  that	
  we	
  used	
  in	
  our	
  model.	
  The	
  first	
  post	
  is	
  connected	
  with	
  
the	
  DIY	
  (62%	
  relevant)	
  topic	
  and	
  the	
  second	
  with	
  Treat/Reward	
  (73%	
  relevant)
62% 73%
DIY TREAT	
  /	
  
REWARD
PS	
  FLAVOR FALL	
  (SEASON) PSL	
  RECIPES HEALTHY	
  
LIVING
FILLER/	
  
INFREQUENT	
  
WORDS
TOPICS:
10 |
• K-­‐means	
  highlights	
  clusters	
  of	
  conversations	
  based	
  on	
  
the	
  topics	
  they	
  discuss
• This	
  creates	
  a	
  segmentation	
  that	
  reflects	
  how	
  people	
  
discuss	
  a	
  subject
• Keys	
  in	
  on	
  the	
  pattern	
  of	
  topics	
  in	
  a	
  conversation	
  
We	
  use	
  the	
  k	
  means	
  clustering	
  algorithm	
  to	
  
segment	
  the	
  conversations	
  based	
  on	
  the	
  topics	
  
in	
  order	
  to	
  create	
  the	
  personas
Segmenting	
  on	
  the	
  topics	
  
11 |
Urban
Living
Fall	
  
(season) Dessert
Starbucks	
  
drinks
Pumpkin	
  
flavor
Treat	
  /	
  	
  
reward
Pumpkin	
  
(recipes)
DIY
Fall	
  
(season)
Treat	
  /	
  
reward
Pumpkin
(flavor)
Dessert
StyleDesserts
Treat /	
  
Reward
Being	
  
Healthy
Urban	
  
Living
Fall	
  
(Season)
Starbucks	
  
Drinks
Fall	
  
(season)
DIY Desserts
Pumpkin
spice	
  
recipes
Treat/	
  
Reward
LESS	
  
IMPORTANT
MORE	
  
IMPORTANT
Grouping	
  the	
  topics	
  that	
  are	
  core	
  to	
  
each	
  segment	
  we	
  can	
  see	
  where	
  
differences	
  break	
  down
Mapping	
  topics	
  to	
  personas
12 |
Plotting	
  continuums	
  to	
  understand	
  the	
  personas
Why	
  they	
  like	
  it
What	
  it	
  stands	
  for
NOVELTYNOSTALGIA
GUILTY  PLEASURE
DAILY  RITUAL
OPPORTUNISTICTRADITIONAL
PERENNIALSEASONAL
OFTEN
OCCASIONAL
EXPECTED
EARNED
13 |
What	
  we	
  found
22%
PSL	
  
PAMPERER A	
  pumpkin spice	
  latte	
  is	
  a	
  treat	
  to	
  be	
  savored	
  
after	
  it’s	
  earned	
  or	
  after	
  a	
  tough	
  a	
  Monday	
  
morning,
“What	
  a	
  weekend.	
  Hello,	
  slow	
  Monday.	
  Oh	
  what's	
  
that?	
  I	
  should	
  get	
  a	
  pumpkin	
  spice	
  latte?	
  Well,	
  if	
  
you	
  insist...”
34%
LATTE
CHEMIST
They make	
  their	
  own	
  lattes	
  in	
  the	
  comfort	
  of	
  
their	
  own	
  home	
  or	
  tinker	
  with	
  the	
  official	
  version	
  
“Here	
  is	
  an	
  awesome	
  home	
  version	
  of	
  Starbucks	
  
Pumpkin	
  Spice	
  Latte.	
  Very	
  simple	
  to	
  make	
  and	
  alot
cheaper… personally	
  I	
  like	
  it	
  better	
  because	
  you	
  
control	
  the	
  amounts	
  of	
  ingredients	
  you	
  put	
  in	
  it	
  
according	
  to	
  your	
  taste.”
38%
FALL
FANATIC Pumpkin	
  spice is	
  part	
  of	
  what	
  makes	
  fall	
  special	
  
for	
  them,	
  a	
  pumpkin	
  spice	
  latte	
  is	
  one	
  part	
  of	
  
their	
  fall	
  tradition
“Pumpkin	
  Spice	
  Latte	
  at	
  Panera.	
  Oh	
  yeah,	
  I	
  need	
  
one	
  of	
  those!	
  	
  Bring	
  on	
  fall!	
  	
  Looking	
  forward	
  to	
  
bonfires	
  in	
  my	
  fire	
  pit	
  and	
  my	
  newly	
  refinished	
  
fireplace.”
6%
PUMPKIN
TRADITIONALIST Loves	
  everything pumpkin	
  from	
  pumpkin	
  pie	
  to	
  
lattes,	
  fall	
  is	
  just	
  an	
  excuse	
  to	
  get	
  their	
  fix	
  of	
  
pumpkin
“Are	
  you	
  ready	
  for	
  a	
  Pumpkin	
  Spice	
  Latte!?!?!	
  	
  Or	
  
how	
  about	
  a	
  Pumpkin	
  Bar????	
  Well	
   tomorrow	
  they	
  
both	
  will	
  be	
  available!!!!”
14 |
Replicating	
  back	
  into	
  Brandwatch
PSL	
  PAMPERER
“morning	
  treat”	
  OR “Saved my	
  morning”	
  OR ((rough	
  OR bad	
  
OR terrible*	
  OR awful	
  OR	
  stressful))	
  NEAR/4 (morning	
  OR
day	
  OR	
  week))
LATTE CHEMIST
((my OR I	
  OR Mine	
  OR	
  “made	
  a”)	
  NEAR/2f (organic	
  OR make	
  
OR recipe	
  OR mixture))	
  OR homemade	
  OR “the	
  perfect”	
  OR	
  
((coffee)	
  NEAR/3	
  (dessert	
  OR “sweet	
  tooth”)
FALL FANATIC
(I OR MY)	
  NEAR/3	
  (“love	
  fall”	
  OR “finally	
  here”	
  OR “the	
  
season”	
  OR	
  autumn)	
  OR	
  ((making	
  OR	
  made	
  OR	
  bake	
  OR	
  
baked)	
  NEAR/4f (cake	
  OR pie	
  OR pastry))
PUMPKIN TRADITIONALIST
((pumpkin) AND (candle	
  OR products OR	
  cake	
  OR pie))	
  OR
“pumpkin	
  flavor”	
  OR ((“I	
  need	
  a”	
  OR “must	
  have”	
  OR “must	
  
get”)	
  NEAR/3f	
  (latte))
We	
  conduct	
  a	
  careful	
  qualitative	
  analysis	
  of	
  
persona	
  mentions	
  to	
  translate	
  the	
  topic	
  
model	
  into	
  Brandwatch rules
• Allows	
  us	
  to	
  visualize	
  and	
  track	
  in	
  Brandwatch
• Create	
  each	
  persona	
  as	
  a	
  sub-­‐category
• Creating	
  the	
  persona	
  rules are	
  iteratively	
  written
Hypothetical	
  rules
15 |
Custom	
  geo-­‐mapping	
  for	
  DMA’s
Persona	
  use	
  cases
Typing	
  tools
Scoring	
  conversation	
  relevance
IDENTIFYING	
  TARGET	
  
SEGMENTS
Commentator
DIY PS	
  Flavor
Fall	
  
(Season)
Treat	
  /	
  
Reward
Focused	
  on	
  others
Traditional
16
Next	
  level	
  – what	
  we’re	
  working	
  on	
  now
§ Ability	
  to	
  use	
  the	
  model	
  to	
  tag	
  incoming	
  mentions	
  
in	
  Brandwatch
§ Determining	
  demographic	
  characteristics	
  from	
  
language
§ Utilizing	
  topics	
  to	
  predict	
  outcomes
Thank	
  you
Bill	
  Harding	
  – Data	
  Scientist
billh@tahzoo.com
Colin	
  Rogers	
  – Direction	
  of	
  Content	
  Strategy
colinr@tahzoo.com

More Related Content

Viewers also liked

Atlas de parasitología dr
Atlas de parasitología drAtlas de parasitología dr
Atlas de parasitología drkathyling
 
Chuyên đề
Chuyên đềChuyên đề
Chuyên đềNam Nam
 
Why You Should Get an MBA by Mikus Kins
Why You Should Get an MBA by Mikus KinsWhy You Should Get an MBA by Mikus Kins
Why You Should Get an MBA by Mikus KinsMikus Kins
 
Storytelling with Dashboards and Vizia - Doing More With Social
Storytelling with Dashboards and Vizia - Doing More With Social Storytelling with Dashboards and Vizia - Doing More With Social
Storytelling with Dashboards and Vizia - Doing More With Social Brandwatch
 
Principios Basicos de Normalizacion
Principios Basicos de NormalizacionPrincipios Basicos de Normalizacion
Principios Basicos de NormalizacionVictor Salgado
 

Viewers also liked (10)

CMA 2012
CMA 2012CMA 2012
CMA 2012
 
cases
casescases
cases
 
NeighborhoodScout Tips
NeighborhoodScout TipsNeighborhoodScout Tips
NeighborhoodScout Tips
 
Atlas de parasitología dr
Atlas de parasitología drAtlas de parasitología dr
Atlas de parasitología dr
 
Chuyên đề
Chuyên đềChuyên đề
Chuyên đề
 
Why You Should Get an MBA by Mikus Kins
Why You Should Get an MBA by Mikus KinsWhy You Should Get an MBA by Mikus Kins
Why You Should Get an MBA by Mikus Kins
 
Jung by Anthony Storr
Jung by Anthony StorrJung by Anthony Storr
Jung by Anthony Storr
 
Tejidos anatomía
Tejidos anatomíaTejidos anatomía
Tejidos anatomía
 
Storytelling with Dashboards and Vizia - Doing More With Social
Storytelling with Dashboards and Vizia - Doing More With Social Storytelling with Dashboards and Vizia - Doing More With Social
Storytelling with Dashboards and Vizia - Doing More With Social
 
Principios Basicos de Normalizacion
Principios Basicos de NormalizacionPrincipios Basicos de Normalizacion
Principios Basicos de Normalizacion
 

Similar to Brandwatch masterclass presentation

Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey
Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey
Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey SmartBug Media
 
Attract Great Talent – How to tell an authentic story about life at your com...
Attract Great Talent –  How to tell an authentic story about life at your com...Attract Great Talent –  How to tell an authentic story about life at your com...
Attract Great Talent – How to tell an authentic story about life at your com...Rebecca Feldman
 
Drive App Discoverability and Downloads with ASO
Drive App Discoverability and Downloads with ASODrive App Discoverability and Downloads with ASO
Drive App Discoverability and Downloads with ASOApptentive
 
Product Management. Visioning, segmentation, and positioning
Product Management. Visioning, segmentation, and positioningProduct Management. Visioning, segmentation, and positioning
Product Management. Visioning, segmentation, and positioningShiftup
 
Lean Analytics & Analytics Dashboards
Lean Analytics & Analytics DashboardsLean Analytics & Analytics Dashboards
Lean Analytics & Analytics DashboardsYves Ferket
 
Collaboration Techniques that really work
Collaboration Techniques that really workCollaboration Techniques that really work
Collaboration Techniques that really workleisa reichelt
 
It's All About The Content, Baby.
It's All About The Content, Baby.It's All About The Content, Baby.
It's All About The Content, Baby.Quisenberry
 
Social Media 201
Social Media 201Social Media 201
Social Media 201Kelly Ahern
 
21 different types of opt-ins: Which should you choose?
21 different types of opt-ins: Which should you choose?21 different types of opt-ins: Which should you choose?
21 different types of opt-ins: Which should you choose?The Well-Paid Expert
 
[GHOST PARTNER] Content is the killer app
[GHOST PARTNER] Content is the killer app[GHOST PARTNER] Content is the killer app
[GHOST PARTNER] Content is the killer appGhost Partner
 
Voice Search : Thought for food
Voice Search : Thought for foodVoice Search : Thought for food
Voice Search : Thought for foodCedric Tortel
 
Evergreen Content: What It Is and Why Your Site Needs It
Evergreen Content: What It Is and Why Your Site Needs ItEvergreen Content: What It Is and Why Your Site Needs It
Evergreen Content: What It Is and Why Your Site Needs ItPaulDonahue16
 
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015Rebekah Baggs
 
98togo roam lunch__learn_-_final
98togo roam lunch__learn_-_final98togo roam lunch__learn_-_final
98togo roam lunch__learn_-_finalRon Medlin
 

Similar to Brandwatch masterclass presentation (20)

Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey
Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey
Keywords Are People Too: Aligning SEO with Personas & the Buyer's Journey
 
Attract Great Talent – How to tell an authentic story about life at your com...
Attract Great Talent –  How to tell an authentic story about life at your com...Attract Great Talent –  How to tell an authentic story about life at your com...
Attract Great Talent – How to tell an authentic story about life at your com...
 
SEO Copywriting
SEO CopywritingSEO Copywriting
SEO Copywriting
 
How to Conquer Content Chaos
How to Conquer Content ChaosHow to Conquer Content Chaos
How to Conquer Content Chaos
 
Gidon Session2
Gidon Session2Gidon Session2
Gidon Session2
 
Drive App Discoverability and Downloads with ASO
Drive App Discoverability and Downloads with ASODrive App Discoverability and Downloads with ASO
Drive App Discoverability and Downloads with ASO
 
Product Management. Visioning, segmentation, and positioning
Product Management. Visioning, segmentation, and positioningProduct Management. Visioning, segmentation, and positioning
Product Management. Visioning, segmentation, and positioning
 
Lean Analytics & Analytics Dashboards
Lean Analytics & Analytics DashboardsLean Analytics & Analytics Dashboards
Lean Analytics & Analytics Dashboards
 
Collaboration Techniques that really work
Collaboration Techniques that really workCollaboration Techniques that really work
Collaboration Techniques that really work
 
It's All About The Content, Baby.
It's All About The Content, Baby.It's All About The Content, Baby.
It's All About The Content, Baby.
 
Social Media 201
Social Media 201Social Media 201
Social Media 201
 
21 different types of opt-ins: Which should you choose?
21 different types of opt-ins: Which should you choose?21 different types of opt-ins: Which should you choose?
21 different types of opt-ins: Which should you choose?
 
[GHOST PARTNER] Content is the killer app
[GHOST PARTNER] Content is the killer app[GHOST PARTNER] Content is the killer app
[GHOST PARTNER] Content is the killer app
 
Voice Search : Thought for food
Voice Search : Thought for foodVoice Search : Thought for food
Voice Search : Thought for food
 
Dine America
Dine AmericaDine America
Dine America
 
Digital content best_practices
Digital content best_practicesDigital content best_practices
Digital content best_practices
 
Evergreen Content: What It Is and Why Your Site Needs It
Evergreen Content: What It Is and Why Your Site Needs ItEvergreen Content: What It Is and Why Your Site Needs It
Evergreen Content: What It Is and Why Your Site Needs It
 
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015
Journey Mapping for Damn Good Digital Design - Digital Summit Dallas 2015
 
London HUG - Human Content In An AI World
London HUG - Human Content In An AI WorldLondon HUG - Human Content In An AI World
London HUG - Human Content In An AI World
 
98togo roam lunch__learn_-_final
98togo roam lunch__learn_-_final98togo roam lunch__learn_-_final
98togo roam lunch__learn_-_final
 

Recently uploaded

办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home ServiceSapana Sha
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxFurkanTasci3
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookvip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookmanojkuma9823
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 

Recently uploaded (20)

办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptx
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Bookvip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
vip Sarai Rohilla Call Girls 9999965857 Call or WhatsApp Now Book
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 

Brandwatch masterclass presentation

  • 1. NLP  +  Brandwatch Analytics Deriving  insights  from  social  conversations using Natural   Language  Processing and  the  Brandwatch Analytics  API
  • 2. What  we  will  cover  today What  do  we  want  to  answer?  (and  why) Our  approach  to  social  data Leveraging  the  Brandwatch API to  extract  data   Deriving  insight  from  personas   Identifying  key topics  of  conversation Segmenting  on  those  topics  to develop  personas Replicating  back  into  Brandwatch What  we’re  working  on  next
  • 3. 3 | § Provides  an  in-­‐situ  portrait  based  on  exhibited  behavior  not   on  elicited  feedback § Highly  relevant  as  it  can  be  updated  in  near-­‐real  time § Enables  research  budget  to  be  focused  on  insights  rather   than  data  collection Social  intelligence  enables  new  ways  of   answering  traditional  business  questions   and  driving  data  driven  actions What  are  the  sort  of  questions  we  want  to  answer?   How  can  a  financial  services  company   reach  out  to  cyclists? How  can  we  get  small  business  owners   to  engage  with  their  cell  phone   provider  online? What  is  the  customer  journey  for  a   motorcycle  enthusiast?
  • 4. 4 | There  are  seven  stages  to  the  analytical  process  of   developing  utilizing  personas  with  social  data Our  approach  to  working  with  social  data Extract Develop   the  dataset Linguistic   model Segment Analyze TrackQuery  data Prepare § Need  to  truly  understand  your  data  before   any  analysis § Iterative  query/dataset  development   through  virtual  ethnography § Use  the  Brandwatch API  to  extract  the  full   text  mentions   Model § Employ  Natural  Language   processing  to  model  how  people   talk § Use  either  qualitative  methods   or  clustering  algorithms  to   segment Understand § Through  visualization  and   analysis  we  can  understand   thoughts,  feelings  and   preferences § Replicate  back  into  Brandwatch as  sub-­‐categories  to  monitor  on   an  ongoing  basis
  • 5. 5 | • Provide  the  basis  for  a  ‘corpus’  in  NLP  jargon  from  which   to  model • We  have  built  a  library  of  functions  using    python  to   retrieve  and  format  the  data • The  output  format  of  the  API  is  in  JSON  so  there  is  some   work  to  turn  it  into  a  table  we  can  read  and  use Extracted  BW  data  has  many  use  cases,  today  we   will  be  primarily  focused  on  full  text  mentions Leveraging  the  API  to  extract  the  dataset   Example  API  function: def get_mentions_query_URL(  startdate,enddate,project_id,   query_id,access_token,fullText): query_def =  "data/mentions”   end_date =  "endDate="  +  end_date +  "T00:00:00.000Z” start_date =  "startDate="  +  start_date +   "T00:00:00.000Z" request_URL="https://newapi.brandwatch.com/projects/"   +str(project_id)  +  "/"  +query_def if fullText ==  True: request_URL =  request_URL +  "/fulltext" request_URL =  request_URL +  "?"  +  "queryId="  +   str(query_id)  +  "&"  +  start_date +  "&"  +  end_date +   "&pageSize=5000"  +  "&access_token="  +  access_token return request_URL Read  more:  blog.tahzoo.com/tech-­‐thursday-­‐brandy-­‐py-­‐a-­‐python-­‐library-­‐for-­‐brandwatch/ Github:  https://github.com/BillmanH/brandy.py/
  • 6. 6 | Linguistic  model  -­‐ Identifying  the  topics  in  a  conversation pumpkin sugar HEALTHY  LIVING PUMPKIN  SPICE CONVERSATIONS TEXT  ANALYSIS TOPIC   MODEL 1 Break  down  each  conversation  into  the  words  and   sentences  to  probabilistically  assess  each  word’s   relationship  with  each  other  word 2 Analyze  to  uncover  the  most  common  “topics”  of   conversation 3 Run  clustering  analysis  to  segment  on  topics 4 Iterate  on  topics  until  we  develop  a  solid  segmentation Four  steps  to  targeting  personas
  • 7. 7 | ("pumpkin  spice  latte")   NOT ("vue pack"  OR "value  pack"  OR  "how  to  make"  OR   "win  free"  OR "latte  cake" OR  "black  friday"  OR "pack   of"  OR "My  TL  right  now  iOS7  Hump  Day  iOS7"   OR site:(twitter.com OR kdvr.com OR fox59.com  OR   news.google.com)) An  example:  who  discusses  Pumpkin  Spice  Lattes? Our  query… Excluded  because  of   irrelevant    recipes   Purposefully   broad   query  to  capture  full   range  of   conversations Exclude  Twitter  as  it   would  overwhelm  the   results  and  we  couldn’t   export  full  text  mentions
  • 8. 8 | Do  it   Yourself Starbucks Nutrition Healthy   living Style Urban  living restaurants PS  recipes Amazing   treat Pumpkin   Spice   ingredients PS  Flavor Coffee  at   home people pumpkin grams squash fall city binary milk love food pumpkin home make spice fat healthy wear place victoire pumpkin time hari spice inch things latte calories recipe fashion food restaurants coffee day babe pie coffee life starbucks sugar food boots park options sugar good ingredients latte green time fall registers recipes style street time recipe back sugar flavor set thing psl data copycat color local pst spice week science flavored keurig feel drink saturated favorite wearing free visit cup great cancer seasonal count find coffee carbs soup dress art trading make home organic year price years today sodium paleo black event restaurant cream made found taste mountain world lattes pos version top restaurant september syrup work chemical food make The  topics  
  • 9. 9 | DIY  Example: “I  get  annoyed  when  a recipe  calls  for  pumpkin  pie  spice.     It's  not  that  people  use  it  that  annoys  me,  it's  the  mere   existence  of  it  as  a  single  spice.    …  I  guess  I'm  just  a  purist   at  heart.    Since  I  haven't  seen  pumpkin  pie  spice  here  in   France  I  now  need  to  make  our  own  pumpkin  pie  spice   mixture,  and  then  figure  out  the  right  proportions  for  my   dreamboat  pumpkin  spice  latte.    Nothing  that  a  Google   search  won't  solve,  but  annoying  nonetheless.    And  don't   worry,  when  I  do  I'll  be  sure  to  share  it  with  you.    Maybe   you'll  even  get  some  rainbows.    Fingers  crossed.   An  example  of  how  this  analysis  works Treat/Reward  Routine  Example: “I  thought   splurging  on  a  venti pumpkin  spice  latte  would   make  me  feel  better  this  morning,  (or  maybe  even  the   three  cups  of  green  tea  with  lotsa honey  in  it!)  ...but  as   my  ears  pop,  my  nose  runs,  and  my  throat  feels  like   somebody  took  sandpaper  to  it  last  nite,  I  guess  it's  time   to  finally  suck  it  up  &  take  some  meds  ó¾Œ®ó¾ ‚  I  blame   you!  Rodney  Deal!!  Haha kidding  kidding  ;  ) Below  are  two  pieces  of  verbatim  content  that  we  used  in  our  model.  The  first  post  is  connected  with   the  DIY  (62%  relevant)  topic  and  the  second  with  Treat/Reward  (73%  relevant) 62% 73% DIY TREAT  /   REWARD PS  FLAVOR FALL  (SEASON) PSL  RECIPES HEALTHY   LIVING FILLER/   INFREQUENT   WORDS TOPICS:
  • 10. 10 | • K-­‐means  highlights  clusters  of  conversations  based  on   the  topics  they  discuss • This  creates  a  segmentation  that  reflects  how  people   discuss  a  subject • Keys  in  on  the  pattern  of  topics  in  a  conversation   We  use  the  k  means  clustering  algorithm  to   segment  the  conversations  based  on  the  topics   in  order  to  create  the  personas Segmenting  on  the  topics  
  • 11. 11 | Urban Living Fall   (season) Dessert Starbucks   drinks Pumpkin   flavor Treat  /     reward Pumpkin   (recipes) DIY Fall   (season) Treat  /   reward Pumpkin (flavor) Dessert StyleDesserts Treat /   Reward Being   Healthy Urban   Living Fall   (Season) Starbucks   Drinks Fall   (season) DIY Desserts Pumpkin spice   recipes Treat/   Reward LESS   IMPORTANT MORE   IMPORTANT Grouping  the  topics  that  are  core  to   each  segment  we  can  see  where   differences  break  down Mapping  topics  to  personas
  • 12. 12 | Plotting  continuums  to  understand  the  personas Why  they  like  it What  it  stands  for NOVELTYNOSTALGIA GUILTY  PLEASURE DAILY  RITUAL OPPORTUNISTICTRADITIONAL PERENNIALSEASONAL OFTEN OCCASIONAL EXPECTED EARNED
  • 13. 13 | What  we  found 22% PSL   PAMPERER A  pumpkin spice  latte  is  a  treat  to  be  savored   after  it’s  earned  or  after  a  tough  a  Monday   morning, “What  a  weekend.  Hello,  slow  Monday.  Oh  what's   that?  I  should  get  a  pumpkin  spice  latte?  Well,  if   you  insist...” 34% LATTE CHEMIST They make  their  own  lattes  in  the  comfort  of   their  own  home  or  tinker  with  the  official  version   “Here  is  an  awesome  home  version  of  Starbucks   Pumpkin  Spice  Latte.  Very  simple  to  make  and  alot cheaper… personally  I  like  it  better  because  you   control  the  amounts  of  ingredients  you  put  in  it   according  to  your  taste.” 38% FALL FANATIC Pumpkin  spice is  part  of  what  makes  fall  special   for  them,  a  pumpkin  spice  latte  is  one  part  of   their  fall  tradition “Pumpkin  Spice  Latte  at  Panera.  Oh  yeah,  I  need   one  of  those!    Bring  on  fall!    Looking  forward  to   bonfires  in  my  fire  pit  and  my  newly  refinished   fireplace.” 6% PUMPKIN TRADITIONALIST Loves  everything pumpkin  from  pumpkin  pie  to   lattes,  fall  is  just  an  excuse  to  get  their  fix  of   pumpkin “Are  you  ready  for  a  Pumpkin  Spice  Latte!?!?!    Or   how  about  a  Pumpkin  Bar????  Well   tomorrow  they   both  will  be  available!!!!”
  • 14. 14 | Replicating  back  into  Brandwatch PSL  PAMPERER “morning  treat”  OR “Saved my  morning”  OR ((rough  OR bad   OR terrible*  OR awful  OR  stressful))  NEAR/4 (morning  OR day  OR  week)) LATTE CHEMIST ((my OR I  OR Mine  OR  “made  a”)  NEAR/2f (organic  OR make   OR recipe  OR mixture))  OR homemade  OR “the  perfect”  OR   ((coffee)  NEAR/3  (dessert  OR “sweet  tooth”) FALL FANATIC (I OR MY)  NEAR/3  (“love  fall”  OR “finally  here”  OR “the   season”  OR  autumn)  OR  ((making  OR  made  OR  bake  OR   baked)  NEAR/4f (cake  OR pie  OR pastry)) PUMPKIN TRADITIONALIST ((pumpkin) AND (candle  OR products OR  cake  OR pie))  OR “pumpkin  flavor”  OR ((“I  need  a”  OR “must  have”  OR “must   get”)  NEAR/3f  (latte)) We  conduct  a  careful  qualitative  analysis  of   persona  mentions  to  translate  the  topic   model  into  Brandwatch rules • Allows  us  to  visualize  and  track  in  Brandwatch • Create  each  persona  as  a  sub-­‐category • Creating  the  persona  rules are  iteratively  written Hypothetical  rules
  • 15. 15 | Custom  geo-­‐mapping  for  DMA’s Persona  use  cases Typing  tools Scoring  conversation  relevance IDENTIFYING  TARGET   SEGMENTS Commentator DIY PS  Flavor Fall   (Season) Treat  /   Reward Focused  on  others Traditional
  • 16. 16 Next  level  – what  we’re  working  on  now § Ability  to  use  the  model  to  tag  incoming  mentions   in  Brandwatch § Determining  demographic  characteristics  from   language § Utilizing  topics  to  predict  outcomes
  • 17. Thank  you Bill  Harding  – Data  Scientist billh@tahzoo.com Colin  Rogers  – Direction  of  Content  Strategy colinr@tahzoo.com