how to leverage usage data to drive product messaging and adoption - rachel sprung (productcamp...

59
HOW TO LEVERAGE USAGE DATA TO DRIVE PRODUCT MESSAGING AND ADOPTION. Rachel Sprung | Product Marketing Manager

Upload: productcamp-boston

Post on 16-Jul-2015

67 views

Category:

Marketing


2 download

TRANSCRIPT

Page 1: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

HOW TO LEVERAGE USAGE DATA TO DRIVE PRODUCT MESSAGING AND ADOPTION.

Rachel Sprung | Product Marketing Manager

Page 2: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

I learned how to use Excel from my dad’s football pool when I was 10.

@RSprung

RACHEL SPRUNG

Page 3: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

1  Introduction

2  Understanding Your Usage Data

3  Pulling Usage Data Using SQL

4  Running Campaigns

5  Conclusion

AGENDA

Page 4: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 5: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 6: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

WHERE DO YOU START?

Page 7: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

RESEARCH INTO YOUR USAGE DATA. 1

Page 8: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 9: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

How many customers are using different parts of my product?

Page 10: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

Are there certain points in the product where a customer stops using the product?

Page 11: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

How much money are they paying me for the product?

Page 12: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

Did a customer test my product in the trial process?

Page 13: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

How long has the customer used my product or service?

Page 14: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

CREATE A HYPOTHESIS. 2

Page 15: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

How do you plan for an upcoming product launch?

Page 16: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

FIND THE CUSTOMERS WHO ARE THE PERFECT PRODUCT FIT.

Page 17: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

GATEWAY PRODUCTS.

Coffee Sample

Venti Soy Lattee

Page 18: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

GATEWAY PRODUCTS.

Free Mobile App

Paid Mobile App

Page 19: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

GATEWAY PRODUCTS.

Page 20: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

COMPLIMENTARY APPS.

Page 21: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

CONTENT INDICATORS.

Page 22: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 23: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

3 PULL YOUR USAGE DATA.

Page 24: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

WHAT IS SQL?

SQL = Structured Query Language •  SQL is the vehicle that pulls data out of the

server in a way that we can analyze it. •  SQL has no visualization capacity, but it can

output data

Page 25: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

COMMON TERMS.

QUERY TABLE DATABASE

Page 26: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

Who are the people who have red hair in Massachusetts and were born in 2003 organized in alphabetical order?

Page 27: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

Who are the people who have red hair in Massachusetts and were born in 2003 organized in alphabetical order?

Page 28: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

•  SHOW DATABASES;

•  SHOW TABLES in NewEngland;

•  Describe people_massachusetts;

UNDERSTAND THE HIERARCHY OF YOUR DATABASE.

Page 29: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

SELECT statements choose the fields that you want displayed in your chart

SELECT.

EXAMPLE QUERY: SELECT

first_name, last_name

Page 30: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

* tells the query that you want to include all of the columns of data in your results.

*.

EXAMPLE QUERY: SELECT

*

Page 31: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

FROM pinpoints the table that you want to pull the data from. Tables:

people_connecticut people_maine people_massachusetts people_newhampshire people_rhodeisland people_vermont

FROM.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

Page 32: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

WHERE begins your filter. Start with any of the fields, and write what you want to see.

WHERE.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

WHERE hair_color = “red”

Page 33: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

AND adds additional criteria.

AND.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

WHERE hair_color = “red”

AND birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’

Page 34: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

ORDER BY sorts the fields.

ORDER BY.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

WHERE hair_color = “red”

AND birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’

ORDER BY last_name

;

Page 35: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

GROUP BY aggregates data that has similarities.

GROUP BY.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

WHERE hair_color = “red”

AND birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’

GROUP BY last_name

;

Page 36: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

TABLE:

ORDER BY VS. GROUP BY.

ORDER BY: GROUP BY:

ID Name

1 Peter

2 John

3 Greg

4 Peter

ID Name

3 Greg

2 John

1 Peter

4 Peter

# Name

1 Greg

1 John

2 Peter

Page 37: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

LIMIT is a good way to test queries by limiting the results you will get from the query.

LIMIT.

EXAMPLE QUERY: SELECT

first_name, last_name

FROM people_massachusetts

WHERE hair_color = “red”

AND birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’

GROUP BY last_name

LIMIT 100

;

Page 38: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

YOU DID IT! http://bit.ly/SQLbootcamp http://bit.ly/introtosql

Page 39: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

4 RUN CAMPAIGNS BASED ON USAGE DATA.

Page 40: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

SEND A PERSONALIZED EMAIL.

Page 41: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

FIND THE CUSTOMER’S POINT-OF-CONTACT.

Page 42: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

SHOW THE PRODUCT’S VALUE.

Page 43: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

NOTIFY CUSTOMERS AT THE RIGHT TIME.

Page 44: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

5 MAKE ADJUSTMENTS.

Page 45: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 46: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

WERE SOME CUSTOMERS USING THE PRODUCT INITIALLY BUT THEN STOPPED?

Page 47: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

WHAT GROUP OF PEOPLE ARE USING THE PRODUCT THE MOST?

Page 48: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

IN THE MONTHS FOLLOWING THE LAUNCH DID USAGE INCREASE OR DECREASE?

Page 49: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

ARE THERE SEASONAL FACTORS IN YOUR PRODUCT USAGE?

Page 50: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

6 COMBINE DATA.

Page 51: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 52: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

CUSTOMER CLICKED ON A LINK IN YOUR EMAIL.

Page 53: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

CUSTOMER USES SOCIAL MEDIA APP AND DOWNLOADS SOCIAL MEDIA CONTENT.

Page 54: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

CUSTOMERS FROM ONE INDUSTRY USES THE PRODUCT MORE THAN OTHERS.

Page 55: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

7 RINSE AND REPEAT.

Page 56: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)
Page 57: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

ANALYTICS RESOURCES TO CHECK OUT.

http://bit.ly/HSanalyticsresources.

Page 58: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

QUESTIONS?

Page 59: How to Leverage Usage Data to Drive Product Messaging and Adoption - Rachel Sprung (ProductCamp Boston 2015)

THANK YOU.