Skip to content

Instantly share code, notes, and snippets.

@jdangerx
Created May 10, 2016 21:48
Show Gist options
  • Save jdangerx/a3acb11a013bac6a39db2e3162dc21ed to your computer and use it in GitHub Desktop.
Save jdangerx/a3acb11a013bac6a39db2e3162dc21ed to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import scipy.stats as stats"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"time_to_cart_add = pd.read_csv(\"time_to_cart_add.csv\")\n",
"variants = time_to_cart_add.groupby('ab_variant')\n",
"most_value, off = (variants.get_group('most_value'), variants.get_group('off'))"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"Ttest_indResult(statistic=-0.39763948541608601, pvalue=0.69472794932612669)"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stats.ttest_ind(most_value['time_to_action'], off['time_to_action'])"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"Ttest_indResult(statistic=-0.38780900089093145, pvalue=0.70188425246415731)"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"time_to_cart_add = pd.read_csv(\"avg_pageviews.csv\")\n",
"variants = time_to_cart_add.groupby('ab_variant')\n",
"most_value, off = (variants.get_group('most_value'), variants.get_group('off'))\n",
"stats.ttest_ind(most_value['avg_actions'], off['avg_actions'])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.1"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment