https://github.com/itzzmeakhi/ab-testing
This project was done as a part of Udacity's Data Analyst Nanodegree program in which AB-Testing is performed for the users under treatment and control groups to predict whether changes should be done for an website or it is ideal to keep the existing one, based on the performance of old and new pages. Hypothesis testing, z-test, and Logistic Regression is performed to predict results.
https://github.com/itzzmeakhi/ab-testing
bootstrapping hypothesis-testing jupyter-notebook matplotlib numpy pandas python statistics z-test
Last synced: about 2 months ago
JSON representation
This project was done as a part of Udacity's Data Analyst Nanodegree program in which AB-Testing is performed for the users under treatment and control groups to predict whether changes should be done for an website or it is ideal to keep the existing one, based on the performance of old and new pages. Hypothesis testing, z-test, and Logistic Regression is performed to predict results.
- Host: GitHub
- URL: https://github.com/itzzmeakhi/ab-testing
- Owner: itzzmeakhi
- Created: 2018-07-17T15:30:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T07:51:51.000Z (over 7 years ago)
- Last Synced: 2025-06-20T12:46:28.207Z (about 1 year ago)
- Topics: bootstrapping, hypothesis-testing, jupyter-notebook, matplotlib, numpy, pandas, python, statistics, z-test
- Language: HTML
- Homepage:
- Size: 4.97 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
I got an error like AttributeError: module 'scipy.stats' has no attribute 'chisqprob' while importing scipy.stats module.
So, i ran through a google search to come over this.
In the link that i have provided in References, chisqprob is deprecated and removed from the scipy from 1.0.0, so there mentioned to use 0.19.0 environment or add the following line at the time of importing the module.
from scipy import stats
stats.chisqprob = lambda chisq, df: stats.chi2.sf(chisq, df)
So, by adding this i get over this error occured.
And when i have any doubt, i go through theexamples provided in the resources and videos of Udacity Nanodegree.