correct data and Wilk

This commit is contained in:
Wirus006 2022-05-17 19:35:49 +02:00
parent ccd4517925
commit c5c5fc5039
2 changed files with 542 additions and 516 deletions

View File

@ -46,7 +46,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 49, "execution_count": 84,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -147,30 +147,54 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 69, "execution_count": 85,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"0.9606528878211975\n", "Female height: Dane mają rozkład normalny.\n",
"2.666284970587185e-10\n", "Male height: Dane mają rozkład normalny.\n",
"Dane nie mają rozkładu normalnego.\n" "Weight before: Dane mają rozkład normalny.\n",
"Weight after: Dane mają rozkład normalny.\n"
] ]
} }
], ],
"source": [ "source": [
"# TODO: Test Shapiro Wilka sprawdzający czy nasze dane mają rozkład normalny\n", "x = dataset['Female height'].to_numpy()\n",
"x = dataset['Height'].to_numpy()\n",
"shapiro_test = stats.shapiro(x)\n", "shapiro_test = stats.shapiro(x)\n",
"print(shapiro_test.statistic)\n",
"print(shapiro_test.pvalue)\n",
"\n", "\n",
"if shapiro_test.pvalue > shapiro_test.statistic:\n", "if shapiro_test.pvalue > 0.05:\n",
" print(\"Dane mają rozkład normalny.\")\n", " print(\"Female height: Dane mają rozkład normalny.\")\n",
"else:\n", "else:\n",
" print(\"Dane nie mają rozkładu normalnego.\")" " print(\"Female height: Dane nie mają rozkładu normalnego.\")\n",
"\n",
"x = dataset['Male height'].to_numpy()\n",
"shapiro_test = stats.shapiro(x)\n",
"\n",
"if shapiro_test.pvalue > 0.05:\n",
" print(\"Male height: Dane mają rozkład normalny.\")\n",
"else:\n",
" print(\"Male height: Dane nie mają rozkładu normalnego.\")\n",
"\n",
"x = dataset['Weight before'].to_numpy()\n",
"shapiro_test = stats.shapiro(x)\n",
"\n",
"if shapiro_test.pvalue > 0.05:\n",
" print(\"Weight before: Dane mają rozkład normalny.\")\n",
"else:\n",
" print(\"Weight before: Dane nie mają rozkładu normalnego.\")\n",
"\n",
"x = dataset['Weight after'].to_numpy()\n",
"shapiro_test = stats.shapiro(x)\n",
"\n",
"if shapiro_test.pvalue > 0.05:\n",
" print(\"Weight after: Dane mają rozkład normalny.\")\n",
"else:\n",
" print(\"Weight after: Dane nie mają rozkładu normalnego.\")\n",
"\n",
"\n"
] ]
}, },
{ {
@ -369,8 +393,10 @@
] ]
}, },
{ {
"cell_type": "markdown", "cell_type": "code",
"execution_count": null,
"metadata": {}, "metadata": {},
"outputs": [],
"source": [ "source": [
"#TODO: Wyciągnąć wysokości kobiet i mężczyzn oraz poprawić kod aby można było podawać kolumny\n", "#TODO: Wyciągnąć wysokości kobiet i mężczyzn oraz poprawić kod aby można było podawać kolumny\n",
"t_stat, df, cv, p, _ = bootstrap_independent(dataset, dataset)\n", "t_stat, df, cv, p, _ = bootstrap_independent(dataset, dataset)\n",

File diff suppressed because it is too large Load Diff