Skip to content

ds-wook/pyuba

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyUBA: Python User Behavior Analysis

PyPI version GitHub license Code style: black

What is it?

pyuba is growth hacking tools library.

Installation

pyuba is on PyPI, so you can use pip to install it:

$ pip install pyuba

Usage Examples

import pyuba as uba
from plotly.offline import iplot

events = uba.load_dataset(1000)

events = uba.acquisition_events_cohort(
    events=events,
    acquisition_event_name="Install"
)

fig = uba.plot_users_per_period(
    events=events,
    acquisition_event_name="Install",
    user_source_col="user_source",
    period="m",
)

iplot(fig)

Requirements

  • numpy
  • pandas
  • matplotlib
  • seaborn
  • plotly
  • scipy

License

pyuba is Apache-2.0 Licensed.

About

Python User Behavior Analysis

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages