All Projects → bradjasper → Mixpanel-Statistics

bradjasper / Mixpanel-Statistics

Licence: other
Perform statistics on Mixpanel API data

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mixpanel-Statistics

growthbook
Open Source Feature Flagging and A/B Testing Platform
Stars: ✭ 2,342 (+8907.69%)
Mutual labels:  statistics, mixpanel
teach-r-online
Materials for the Teaching statistics and data science online workshops in July 2020
Stars: ✭ 52 (+100%)
Mutual labels:  statistics
Data-Analyst-Nanodegree
Kai Sheng Teh - Udacity Data Analyst Nanodegree
Stars: ✭ 42 (+61.54%)
Mutual labels:  statistics
laravel-model-stats
Model statistics dashboard for your Laravel Application
Stars: ✭ 186 (+615.38%)
Mutual labels:  statistics
GlobalSearchRegression.jl
Julia's HPC command for automatic feature/model selection using all-subset-regression approaches
Stars: ✭ 14 (-46.15%)
Mutual labels:  regression-analysis
quarantine-bot
WhatsApp bot powered by Twilio API to get through the quarantine. Latest COVID19 statistics, world news, inspirational quotes and cat photos.
Stars: ✭ 24 (-7.69%)
Mutual labels:  statistics
mongodb-info
MongoDB Info - command line tool to get stats.
Stars: ✭ 13 (-50%)
Mutual labels:  statistics
wp-analytify
Google Analytics Dashboard Plugin For WordPress By Analytify
Stars: ✭ 20 (-23.08%)
Mutual labels:  statistics
php-statistics
Statistics library for PHP
Stars: ✭ 32 (+23.08%)
Mutual labels:  statistics
d3-boxplot
d3js box plot plugin
Stars: ✭ 21 (-19.23%)
Mutual labels:  statistics
BayesHMM
Full Bayesian Inference for Hidden Markov Models
Stars: ✭ 35 (+34.62%)
Mutual labels:  statistics
AMIDD
Introduction to Applied Mathematics and Informatics in Drug Discovery (AMIDD)
Stars: ✭ 13 (-50%)
Mutual labels:  statistics
mixpanel-lite
2.9k alternative to mixpanel-js with offline support for PWAs
Stars: ✭ 49 (+88.46%)
Mutual labels:  mixpanel
Probability Theory
A quick introduction to all most important concepts of Probability Theory, only freshman level of mathematics needed as prerequisite.
Stars: ✭ 25 (-3.85%)
Mutual labels:  statistics
ThunderStats
This addon adds awesome statistics to your beloved Thunderbird!
Stars: ✭ 34 (+30.77%)
Mutual labels:  statistics
karan36k.github.io
These are all the articles and pages I have in my data science website. I try to transcribe all I learn and post regularly. Please visit and feel free to email me for suggestions.
Stars: ✭ 22 (-15.38%)
Mutual labels:  statistics
goodreads-toolbox
9 tools for Goodreads.com, for finding people based on the books they’ve read, finding books popular among the people you follow, following new book reviews, etc
Stars: ✭ 56 (+115.38%)
Mutual labels:  statistics
Data-Science-Sandbox
Code and resources to serve as a starting point for data science projects.
Stars: ✭ 14 (-46.15%)
Mutual labels:  statistics
tuneta
Intelligently optimizes technical indicators and optionally selects the least intercorrelated for use in machine learning models
Stars: ✭ 77 (+196.15%)
Mutual labels:  correlation
mortAAR
R Package - Analysis of Archaeological Mortality Data
Stars: ✭ 13 (-50%)
Mutual labels:  statistics

Mixpanel Statistics

A collection of Python scripts that pull API data from Mixpanel and perform statistics on the data.

Currently supported: - Correlation Analysis - Regression Analysis

Setup

Retrieve your API key and secret from Mixpanel API Information (http://mixpanel.com/user/account/#info). Set the variables in your shell:

export MIXPANEL_API_KEY=klsj234kljSLDKFJl243jlksdjf
export MIXPANEL_API_SECRET=lkJSdlkj234lkjsdlfksjdflksjdf

Correlation Analysis

Correlation determines the relationship between two variables. To determine the correlation of different Mixpanel events, do:

./correlation.py [event1] [event2] [event3]...
./correlation.py success_view checkout_view checkout_error


Output
==============================================================================
Correlation coefficients
checkout_view	x	checkout_error:	0.600231
checkout_view	x	success_view:	0.806892
checkout_error	x	success_view:	0.469129

Regression Analysis

Regression analysis studies the relationship between a dependent variable and other independent variables. To perform regression analysis on your Mixpanel events, do:

./regression.py [dependent_var] [independent_var1] [independent_var2]
./regression.py success_view checkout_view checkout_error

Output
==============================================================================
Dependent Variable: success_view
Method: Least Squares
Date:  Sun, 10 Jan 2010
Time:  12:23:16
# obs:                  60
# variables:         3
==============================================================================
variable     coefficient     std. Error      t-statistic     prob.
==============================================================================
const           1.151644      0.767227      1.501047      0.138863
checkout_view           0.049232      0.005862      8.398709      0.000000
checkout_error          -0.032332      0.133101     -0.242911      0.808946
==============================================================================
Models stats                         Residual stats
==============================================================================
R-squared             0.651435         Durbin-Watson stat   2.219304
Adjusted R-squared    0.639205         Omnibus stat         6.593467
F-statistic           53.263875         Prob(Omnibus stat)   0.037004
Prob (F-statistic)    0.000000         JB stat              5.678402
Log likelihood       -160.875422         Prob(JB)             0.058472
AIC criterion         5.462514         Skew                 0.649233
BIC criterion         5.567231         Kurtosis             3.765081
==============================================================================
Regression equation for response variable 'success_view'

success_view = 1.15164371922 + 0.04923(checkout_view) + -0.03233(checkout_error)

Contact

Web: http://bradjasper.com
Twitter: @bradjasper
Email: [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].