for cohort analysis
Project description
fabcohort
A small demo library for a fab_cohort about cohort analysis
Installation
pip install fabcohort
Get started
How to do cohort analysis with this lib:
FUNCTION1:
Cohort analysis by segments
Pandas df.head(5) should look like -
| user_id | date | segment | count |
|---|---|---|---|
| 5fb507360cd5c0 | 2023-04-01 | A,B | 1 |
| weg507360cwfw3 | 2023-03-01 | A, | 1 |
| 6001ef966c13w3 | 2023-02-01 | C,D | 1 |
| weg507360cwfw3 | 2023-04-01 | B,D | 1 |
| 6001ef966c13w3 | 2023-03-01 | A,B | 1 |
from fab_cohort import Cohort
# Instantiate a Cohort object
cohort = Cohort()
# Call the count_cohort_segments method, e.g., MS for month start, W-MON for week start
result = cohort.count_cohort_segments(df, frequency)
# (Optional) if you have multiple segments just parse it
result[['segment1', 'segment2']] = result['segment'].str.split(',', expand=True)
result.drop('segment', axis=1, inplace=True)
FUNCTION3:
Convert the count to percentage
# once the above result is obtained
# Call the count_cohort method
result_pct = cohort.to_pct(result)
# (Optional) if you have multiple segments just parse it
result[['segment1', 'segment2']] = result['segment'].str.split(',', expand=True)
result.drop('segment', axis=1, inplace=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fabcohort-0.3.1.tar.gz
(3.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fabcohort-0.3.1.tar.gz.
File metadata
- Download URL: fabcohort-0.3.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
680ff400a5ef1592d2f141335b0a7d4c85341d6a804ccf2aa19ebc28c39af39b
|
|
| MD5 |
cfcd6569edd295e3a8376d957d922ec7
|
|
| BLAKE2b-256 |
27d5c3476184cf2cc5b1237aee4805974bf4716e0bbd364ac1302bee457763ed
|
File details
Details for the file fabcohort-0.3.1-py3-none-any.whl.
File metadata
- Download URL: fabcohort-0.3.1-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
034b17dccf613daee1747699f23a3f84e6b33cf7f8f6ade5ab5acd336aa5b916
|
|
| MD5 |
e5055efefc2bd46e928864fb41c8a489
|
|
| BLAKE2b-256 |
b9c4668abea15d72e20b9106a0059fcd3f817d278283c83735c39b2391f64ba7
|