Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions analysis/cheung_variants/deontology_utility_analysis.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "8a6c5273",
"metadata": {},
"outputs": [],
"source": [
"from pathlib import Path\n",
"import json\n",
"import pandas as pd\n",
"import numpy as np\n",
"import seaborn as sns\n",
"import matplotlib.pyplot as plt\n",
"from scipy.stats import chi2_contingency, ttest_ind"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "aa2c1f85",
"metadata": {},
"outputs": [],
"source": [
"current_path = Path().resolve()\n",
"scenarios_path = current_path / \"../../scenarios_inputs\" / \"cheung_variants\" \n",
"annotated_output_path = current_path / \"../../annotated_outputs\" / \"cheung_variants\"\n",
"\n",
"print(f\"current_path: {current_path}\")\n",
"print(f\"scenarios_path: {scenarios_path}\")\n",
"print(f\"annotated_output_path: {annotated_output_path}\")"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Loading
Loading