<aside> đź’ˇ How to use this template
Read this blogpost for more context on the template and how to use embeds.
</aside>
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 |
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.
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