Author: Erin James Wills, [email protected]
Photo by Jeffrey Hamilton on Unsplash
This repo explores the basic concepts of how to obtain information for AB testing.
This is just the starting point but the core structure of the code works as of 7/3/2023. The Flask app currently loads and index.html page that has two buttons. Each button is tracked through the class associated with it named trackable
. The database currently stores only the id of the button clicked but this can be expanded to include a data, session id, and user id. The app already has a working feature that stores a cookie but this feature needs improved such that the database is checked for this cookie and if the id associated with the cookie can not be found then a new id is assigned.
- Create cookie containing a user id
- Update database to collect datetime, cookie id, etc related to page interaction
- Create two html pages that are considered the A and B versions.
- Create admin page that summarizes website interactions via a dashboard
- Dashboard includes
- Table of most recent users to access page
- Show t-test of A and B pages
- Dashboard includes
- add authentication
- add error handling
- more sophisticated tracking
- improved analysis page
- conversion rate
- click-through rate
- bounce rate
- page views
- form submissions
- Cookies
- Local Storage or Session Storage
- IP Address
- User-Agent String
- Referrer Header
- From terminal, type:
sqlite3 <db_name>
- Write SQL queries to create tables
- When complete type:
.exit