<aside> đź’ˇ How to use this template

  1. Add the information about the Growth experiment on the Overview table.
  2. Embed Rows tables and charts to add live data with the results of the experiment.
  3. Share it with your team or clients 🎉

Read this blogpost for more context on the template and how to use embeds.

</aside>

Overview

Name Rename “Learn” page to “For you”
What We change the name of the Learn page in our Dashboard to “For You” and the “book icon” 📚 with “sparkling icon” ✨.
Why 1) People who visit the Learn page displayed high W1 retention than those who did not visit it
  1. Despite being the final step of our Dashboard, few people visited our learn page. Due to this fact, we cannot truly establish if the relationship between “visiting the LP” and “high retention” is a correlation or a causation | | Hypothesis | Users are impatient and might be scared or discouraged by the name “Learn” which sounds like something boring or time-consuming | | Duration | 2 weeks, starting July 28th | | KPIs impacted | 1) % of new users that visit the “For You” page
  2. W1 and W3 retention of people who visited the page Vs non-visitors |

Results

Add the embedded charts and tables with the results from the growth experiment. See how to embed a Rows spreadsheet in Notion here.

https://rows.com/embed/1tdQVpcxkze8L3g6KRQ7fG6gaMIqQj9V4d9SvO6x46Hy/3df145aa-03e3-468f-80b1-0fd5c1034a26

https://rows.com/embed/1tdQVpcxkze8L3g6KRQ7fG6gaMIqQj9V4d9SvO6x46Hy/a1bb6a88-5afd-4030-ad66-c26006c4b0f3

⚠️ This is sample data. Add here your Rows embed.

SQL Query

SELECT
  EXTRACT(date
  FROM
    created_at) AS day,
  COUNT(DISTINCT u.user_id) AS signups,
  COUNT(DISTINCT lp.user_id) AS LP_visitors,
  ROUND(COUNT(DISTINCT lp.user_id)/COUNT(DISTINCT u.user_id),2) AS ratio
FROM
  `analytics.users` u
LEFT JOIN
  `dashdash-bi-prod.website.entered_learn_page` lp
USING
  (user_id)
WHERE
  created_at > "2022-01-01"
GROUP BY
  day
ORDER BY
  day DESC

🔗 Add here the link to the full spreadsheet