-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path09-slides.Rmd
953 lines (560 loc) Β· 16.6 KB
/
09-slides.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
---
title: "Marketing"
author: "Andrew Heiss"
date: "`r Sys.Date()`"
output:
xaringan::moon_reader:
lib_dir: "libs"
chakra: "libs/remark-latest.min.js"
css: ["default", "css/ath-slides.css", "css/ath-jost-fonts.css", "css/animate.css"]
seal: false
anchor_sections: false
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
ratio: "16:9"
navigation:
scroll: false
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE, message = FALSE,
fig.retina = 3, fig.align = "center")
```
```{r packages-data, include=FALSE}
library(countdown)
```
```{r xaringanExtra, echo=FALSE}
xaringanExtra::use_xaringan_extra(c("tile_view"))
```
class: center middle main-title section-title-2
# Marketing
.class-info[
**October 20, 2022**
.light[PMAP 3210: Introduction to Nonprofits<br>
Andrew Young School of Policy Studies
]
]
---
name: outline
class: title title-inv-5
# Plan for today
--
.box-7.medium.sp-after-half[Marketing theories]
--
.box-3.medium.sp-after-half[Marketing tools]
--
.box-1.medium.sp-after-half[Dignity and poverty porn]
--
.box-2.medium[Stories]
---
layout: false
name: theories
class: center middle section-title section-title-7 animated fadeIn
# Marketing theories
---
class: middle
.box-7.large[What even is marketing?]
---
class: middle
.box-7.large[Why do organizations<br>engage in marketing?]
---
layout: true
class: title title-7
---
# Purpose of marketing
--
.box-inv-7.large[Research, persuade,<br>and change behavior]
---
# Theories of marketing
--
.box-inv-7[Marketing is all about changing people's behaviorβ¦]
--
.box-inv-7.small[β¦so what do people want?]
--
.box-inv-7.small[β¦and why do people behave they way they do?]
--
.box-inv-7.sp-after.small[β¦and why do people change?]
--
.box-7.less-medium[Psychology!]
---
# Theories of marketing
.box-inv-7.less-medium[Change theory]
.box-inv-7.less-medium[Social cognitive theory]
.box-inv-7.less-medium[Exchange theory]
.box-inv-7.less-medium[Stakeholder theory]
---
# Change theory
--
.box-inv-7.sp-after[People act based on their current level/stage of change]
--
.box-7.small[**Pre-contemplation** .smaller[(Aware of new behavior but not interested in changing)]]
--
.box-7.small[**Contemplation** .smaller[(Consciously evaluate personal relevance of new behavior)]]
--
.box-7.small[**Preparation** .smaller[(Decided to act and are trying new behavior)]]
--
.box-7.small[**Action** .smaller[(Doing the new behavior)]]
--
.box-7.small[**Confirmation** .smaller[(Committed to new behavior; no intention to regress)]]
---
# Change theory
.box-inv-7.less-medium.sp-after[How to use the theory]
--
.box-7[Cultivate relationships with donors]
--
.box-7[Help people move along these levels]
--
.box-7[Tailor messages and campaigns<br>to people at different stages]
---
# Social cognitive theory
--
.box-inv-7.less-medium.sp-after[Our behavior is based on our<br>views of the social context we live in]
--
.box-inv-7.less-medium[The social behavior of people<br>around us influences our behavior]
---
# Social cognitive theory
.box-inv-7.less-medium.sp-after[How to use the theory]
--
.box-7[Create marketing strategies that show good behavior]
--
.box-7["Most people do X"]
--
.box-7["It is important/good/socially acceptable to do X"]
---
# Exchange theory
--
.box-inv-7.less-medium.sp-after[People want to make<br>mutually beneficial exchanges with others]
--
.float-left.center[.box-7[Getting a good deal] .box-7[Feeling connected to others]]
---
# Exchange theory
.box-inv-7.less-medium.sp-after[How to use the theory]
--
.box-7[Create marketing strategies that<br>show the benefits of the behavior]
--
.box-7[Emphasize mutual relationships and connections<br>between donor and organization and recipients]
---
# Stakeholder theory
--
.box-inv-7.sp-after[Lots of people and groups are key to the success of<br>a nonprofit and have different needs and preferences]
--
.pull-left[
.box-7[Internal]
.float-left.center[.box-inv-7.small[Staff] .box-inv-7.small[Board]]
]
--
.pull-right[
.box-7[External]
.float-left.center[.box-inv-7.small[Donors] .box-inv-7.small[Regulators]]
.box-inv-7.small[General public]
]
---
# Stakeholder theory
.box-inv-7.less-medium.sp-after[How to use the theory]
--
.box-7[Create marketing strategies that<br>cater to each group's needs]
---
layout: false
name: tools
class: center middle section-title section-title-3 animated fadeIn
# Marketing tools
---
layout: true
class: title title-3
---
# General tools
.box-inv-3.less-medium[Strategic marketing plan]
.box-inv-3.less-medium[Marketing mix]
.box-inv-3.less-medium[SWOT analysis]
.box-inv-3.less-medium[Personas]
.box-inv-3.less-medium[Communications and public relations]
---
# Strategic marketing plan
--
.box-inv-3[General plan for overall marketing strategy]
--
.center[
<figure>
<img src="img/09/marketing-plan.png" alt="Marketing plan overview" title="Marketing plan overview" width="60%">
</figure>
]
???
<https://blog.hubspot.com/marketing/marketing-plan-template-generator>
---
# Marketing mix
--
.box-inv-3.sp-after[Characteristics of the products/services you offer (5Ps)]
--
.box-3.small[**Product or service** .smaller[(Thing you want people to consume or do)]]
--
.box-3.small[**Price** .smaller[(Amount people "pay" for thing)]]
--
.box-3.small[**Place** .smaller[(Where the thing will be consumedβin-person, online, etc.)]]
--
.box-3.small[**Promotion** .smaller[(How you'll publicize the benefits of the thing)]]
--
.box-3.small[**Policy** .smaller[(What regulations or institutional changes are needed to allow people to use the thing)]]
---
# Environmental analysis (SWOT)
--
.box-inv-3[Understand how the organization<br>fits in and interacts with its external environment]
--
.center[
<figure>
<img src="img/09/swot-empty.png" alt="Empty SWOT" title="Empty SWOT" width="35%">
</figure>
]
---
layout: false
.center[
<figure>
<img src="img/09/share-a-smile-swot.png" alt="Share a Smile SWOT" title="Share a Smile SWOT" width="75%">
</figure>
]
---
layout: true
class: title title-3
---
# Personas
.box-inv-3[Profiles of fictional (but typical)<br>donors / customers / recipients]
.box-inv-3.small.sp-after[Each persona represents a segment of the market]
.box-inv-3[Tailor your messaging to their needs]
---
# Persona characteristics
--
.pull-left-3[
.box-inv-3[Demographics]
.center[
.float-left[.box-3.smaller[Age] .box-3.smaller[Gender]]
.float-left[.box-3.smaller[Education] .box-3.smaller[Income]]
.float-left[.box-3.smaller[Location] .box-3.smaller[Employment]]
.float-left[.box-3.smaller[Marital status] .box-3.smaller[etc.]]
]
]
--
.pull-middle-3[
.box-inv-3[Pscyhographics]
.center[
.float-left[.box-3.smaller[Attitudes] .box-3.smaller[Motivations]]
.float-left[.box-3.smaller[Opinions] .box-3.smaller[Values]]
.float-left[.box-3.smaller[Personality] .box-3.smaller[Lifestyle]]
.float-left[.box-3.smaller[etc.]]
]
]
--
.pull-right-3[
.box-inv-3[Behaviors]
.center[
.box-3.smaller[Communication<br>preferences]
.box-3.smaller[Relationship to nonprofit]
.box-3.smaller[Donation history]
.box-3.smaller[etc.]
]
]
---
layout: false
class: middle
.center[
<figure>
<img src="img/09/molly-millennial.png" alt="Molly the Millennial" title="Molly the Millennial" width="60%">
</figure>
]
???
<https://themodernnonprofit.com/donor-personas/>
---
layout: true
class: title title-3
---
# Not just for marketing!
--
.small[
- James is a 30-year-old police officer who has been working for 4 years. Heβs interested in public service in general and is working on his masterβs degree in public policy (MPP) so that he can improve policing in Atlanta.
- Heβs familiar with Excel and has taken two MPP classes on statistics with Stata, but wants to be able to use statistical tools in his job after he finishes the MPP program, so heβs interested in R. He also really likes data visualization
- James needs help with programming, since all his training so far has been with GUIs like Excel and Stata. He isnβt especially familiar with any programming language and is scared of things like the terminal console, but heβs willing and excited to learn
]
---
# Communications & public relations
--
.box-inv-3.medium[How the organization<br>communicates with the public]
--
.box-3[More on this next week!]
---
# Communication methods
--
.box-inv-3[Media.small[<br>(commercials, op-eds, letters to editor)]]
--
.box-inv-3[Direct mailers]
--
.box-inv-3[Social media]
--
.box-inv-3[Sponsorships and event marketing]
--
.box-inv-3[Websites]
---
# Branding
--
.box-inv-3.less-medium.sp-after[The organization's total image]
--
.center[.float-left[.box-3[Logo] .box-3[Fonts] .box-3[Colors]]]
--
.center[.float-left[.box-3[Style] .box-3[Taglines]]]
--
.box-3[**Reputation**]
---
layout: false
name: dignity
class: center middle section-title section-title-1 animated fadeIn
# Dignity and<br>poverty porn
---
layout: true
class: title title-1
---
# Marketing and emotions
--
.box-inv-1[The goal of marketing is to persuade behavior]
--
.box-inv-1.sp-after[Strong emotions β faster, more forceful,<br>more lasting behavioral change]
--
.box-inv-1[Evocative images and photographs create strong emotions]
--
.box-1.less-medium[That's not necessarily bad!]
---
layout: false
class: middle
--
.pull-left[
<figure>
<img src="img/09/1080px-NASA-Apollo8-Dec24-Earthrise.jpg" alt="Earthrise" title="Earthrise" width="100%">
<figcaption>Earthrise (1968)</figcaption>
</figure>
]
--
.pull-right[
<figure>
<img src="img/09/The_Earth_seen_from_Apollo_17.jpg" alt="The Blue Marble" title="The Blue Marble" width="100%">
<figcaption>The Blue Marble (1972)</figcaption>
</figure>
]
???
<https://en.wikipedia.org/wiki/Earthrise#/media/File:NASA-Apollo8-Dec24-Earthrise.jpg>
<https://en.wikipedia.org/wiki/File:The_Earth_seen_from_Apollo_17.jpg>
<https://texasclimatenews.org/2018/12/24/50-years-ago-an-image-of-a-blue-planet-inspired-environmental-awareness/>
---
layout: true
class: title title-1
---
# The allure of suffering
--
.box-inv-1[Nonprofits often deal with human suffering]
--
.box-inv-1.sp-after[Suffering naturally creates curiosity]
--
.box-1.medium.sp-after["If it bleeds, it leads"]
--
.box-inv-1["Poverty porn" can raise more money]
---
layout: false
class: middle
.center[
<figure>
<img src="img/09/bhati-examples.jpg" alt="Bhati examples" title="Bhati examples" width="85%">
</figure>
]
???
<https://doi.org/10.1002/nvsm.1722>
---
class: middle
.center[
<iframe width="1126" height="600" src="https://www.youtube.com/embed/xbqA6o8_WC0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
]
---
layout: true
class: title title-1
---
# Beware of the allure of suffering
--
.box-inv-1[Nonprofits often fail to emphasize the dignity<br>of the people they serve when they fundraise]
--
.box-inv-1[Children are especially taken advantage of]
--
.box-inv-1.sp-after[Every person depicted in a<br>fundraising campaign is a real person]
--
.box-1.medium[Don't sacrifice dignity for impact]
---
layout: true
class: middle
---
.center[
<figure>
<img src="img/09/Mock+adverts_Facebook_2.jpg" alt="Radi-Aid experiment" title="Radi-Aid experiment" width="100%">
</figure>
]
???
<https://www.radiaid.com/which-image-do-you-prefer>
---
.center[
<figure>
<img src="img/09/image-results-summary.png" alt="Radi-Aid experiment results summary" title="Radi-Aid experiment results summary" width="100%">
</figure>
]
???
<https://www.radiaid.com/which-image-do-you-prefer>
---
.box-1.medium[Do not treat those you serve as<br>helpless, incapable, opinion-less objects]
---
.box-1.large[Treat people with dignity]
---
.center[
<figure>
<img src="img/09/guidelines-1-80.jpg" alt="Radi-Aid image guidelines" title="Radi-Aid image guidelines" width="82%">
</figure>
]
---
.center[
<figure>
<img src="img/09/guidelines-2-80.jpg" alt="Radi-Aid image guidelines" title="Radi-Aid image guidelines" width="82%">
</figure>
]
---
.center[
<figure>
<img src="img/09/ircrc-code-80.jpg" alt="IRCRC code of conduct" title="IRCRC code of conduct" width="100%">
</figure>
]
???
<https://www.ifrc.org/code-conduct-international-red-cross-and-red-crescent-movement-and-ngos-disaster-relief>
---
class: middle
.center[
<iframe width="1126" height="600" src="https://www.youtube.com/embed/OXnxFjT-4mg" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
]
---
class: title title-1
# Dignified Storytelling
.center[dignifiedstorytelling.com]
.center[
<figure>
<img src="img/09/dignified-storytelling-principles.png" alt="Dignified Storytelling principles" title="Dignified Storytelling principles" width="50%">
</figure>
]
---
layout: false
name: stories
class: center middle section-title section-title-2 animated fadeIn
# Stories
---
layout: true
class: middle
---
.box-2.large[What are your favorite stories?]
.box-2.large[Why are they so great?]
---
.box-2.large[Why do people like stories?]
---
.center[
<figure>
<img src="img/09/new-yorker-stories.png" alt="The New Yorker on stories" title="The New Yorker on stories" width="60%">
</figure>
]
???
<https://www.newyorker.com/books/page-turner/can-science-explain-why-we-tell-stories>
---
layout: true
class: title title-2
---
# Stories
.box-inv-2.large[**Stories** are how we translate core, essential **content**<br>to different **forms**<br>for specific **audiences**.]
---
# Purpose of stories
--
.box-inv-2.less-medium[We understand the world through causal stories]
--
.box-inv-2.less-medium[Stories are how we construct our sense of self]
--
.box-inv-2.less-medium[Stories are crucial for making ideas memorable]
--
.box-inv-2.less-medium[Stories imbue our experience with meaning]
???
(Gelman and BasbΓΈll, 2014) - "meaning" point from Mayer
---
# Script-following
.box-inv-2[Stories motivate our actions]
> When we act we are often to a great extent *enacting*, we are acting out the story as the script demands, acting in ways that are meaningful in the context of some story and that are true to our character's identity.
>
> <small>Frederick Mayer, *Narrative and Collective Action: The Power of Public Stories*, p. 7</small>
---
layout: false
class: middle
.box-2.large[Stories lead an<br>audience on a journey]
---
layout: true
class: title title-2
---
# Story shapes
.center[
<iframe width="800" height="450" src="https://www.youtube.com/embed/oP3c1h8v2ZQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
]
???
Kurt Vonnegut, https://www.youtube.com/watch?v=oP3c1h8v2ZQ
---
# Every story is the same
.center[
<iframe width="800" height="450" src="https://www.youtube.com/embed/LuD2Aa0zFiA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
]
???
Will Schoder, "Every Story is the Same", https://www.youtube.com/watch?v=LuD2Aa0zFiA
---
# Heroes and structure
.pull-left.center[
<figure>
<img src="img/09/1019px-Heroesjourney.svg.png" alt="The Hero's Journey" title="The Hero's Journey" width="80%">
</figure>
]
.pull-right.center[
<figure>
<img src="img/09/story-cycle.png" alt="The Story Cycle" title="The Story Cycle" width="100%">
</figure>
]
???
https://commons.wikimedia.org/wiki/File:Heroesjourney.svg
5:35 from Will Schoder, "Every Story is the Same", https://www.youtube.com/watch?v=LuD2Aa0zFiA
---
layout: false
class: middle
.box-2.large[When marketing something,<br>who is the hero?]
---
layout: true
class: title title-2
---
# You are not the hero
.center[
<figure>
<img src="img/09/bad-slides.png" alt="Bad slides" title="Bad slides" width="100%">
<figcaption>From Cole Nussbaumer Knaflic, <i>Storytelling with Data: A Data Visualization Guide for Business Professionals</i></figcaption>
</figure>
]
---
layout: false
class: middle
.box-2.large[The audience is the hero]
.box-inv-2.small[This is why we care about personas so much!]
---
class: middle
.center[
<figure>
<img src="img/09/rspca_outdoor_franklin_sml-thumb-400x305-94733.jpg" alt="RSPCA Franklin" title="RSPCA Franklin" width="40%">
</figure>
]
---
layout: true
class: middle
---
.box-2.medium[Do not treat those you serve as<br>helpless, incapable, opinion-less objects]
.box-inv-2.small[If the audience is the hero, those you serve are characters.<br>Don't mistreat them]
---
.box-2.large[Treat people<br>(and their stories)<br>with dignity]