I currently finished making a chart of my data.

So far I'm doing great however, I am worried about not doing the chart correctly. I already had a gard time creating the first one from the data section.
This commit is contained in:
juddin2
2025-10-27 21:52:30 -04:00
parent 95caf60b3a
commit 00d145cb80
7 changed files with 769 additions and 23 deletions

View File

@@ -5,7 +5,7 @@
"id": "worldwide-blood",
"metadata": {},
"source": [
"# Introduction"
"# Impact of Technological apps on Education?"
]
},
{
@@ -13,7 +13,7 @@
"id": "understanding-numbers",
"metadata": {},
"source": [
"*✏️ Write 2-3 sentences describing your research.*"
"*✏️ This research looks at whether using educational apps like Pear Deck helps students learn better and stay more engaged. It compares test scores and survey results from students who used Pear Deck with those who had regular lessons. The goal is to see if learning with technology improves student performance and interest.*"
]
},
{
@@ -21,7 +21,7 @@
"id": "greater-circular",
"metadata": {},
"source": [
"## Overarching Question: [✏️ PUT YOUR QUESTION HERE ✏️]"
"## Overarching Question: Do Educational apps like pear deck improve student learning outcomes?"
]
},
{
@@ -29,7 +29,7 @@
"id": "appreciated-testimony",
"metadata": {},
"source": [
"*✏️ Write 2-3 sentences explaining why this question.*"
"*✏️I am interested in exploring the question: “Do educational apps like Pear Deck improve student learning outcomes?” I chose this question because educational technology is becoming increasingly common in classrooms, and I have observed its use firsthand during my placement in a 3rd-grade classroom. My students regularly use ELA apps such as Pear Assessment and math apps like Pear Deck to complete their classwork. I am curious about whether regular use of educational apps impacts student performance. Investigating this question can reveal patterns in how technology influences learning and provide evidence-based recommendations for teachers.*"
]
},
{
@@ -42,8 +42,8 @@
},
{
"cell_type": "code",
"execution_count": null,
"id": "technical-evans",
"execution_count": 2,
"id": "c4330642-cdf6-447a-af17-94afb4261a30",
"metadata": {},
"outputs": [],
"source": [
@@ -54,27 +54,167 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 9,
"id": "overhead-sigma",
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Student</th>\n",
" <th>Traditional_Studying</th>\n",
" <th>Pear_Deck_Studying</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>10</td>\n",
" <td>14.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>10</td>\n",
" <td>8.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>10</td>\n",
" <td>10.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>10</td>\n",
" <td>15.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>10</td>\n",
" <td>14.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>6</td>\n",
" <td>10</td>\n",
" <td>9.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>7</td>\n",
" <td>10</td>\n",
" <td>13.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>8</td>\n",
" <td>10</td>\n",
" <td>15.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>9</td>\n",
" <td>10</td>\n",
" <td>9.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>10</td>\n",
" <td>10</td>\n",
" <td>15.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>10</th>\n",
" <td>11</td>\n",
" <td>10</td>\n",
" <td>15.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>11</th>\n",
" <td>12</td>\n",
" <td>10</td>\n",
" <td>15.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12</th>\n",
" <td>13</td>\n",
" <td>10</td>\n",
" <td>14.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>13</th>\n",
" <td>14</td>\n",
" <td>10</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>14</th>\n",
" <td>15</td>\n",
" <td>10</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Student Traditional_Studying Pear_Deck_Studying\n",
"0 1 10 14.0\n",
"1 2 10 8.0\n",
"2 3 10 10.0\n",
"3 4 10 15.0\n",
"4 5 10 14.0\n",
"5 6 10 9.0\n",
"6 7 10 13.0\n",
"7 8 10 15.0\n",
"8 9 10 9.0\n",
"9 10 10 15.0\n",
"10 11 10 15.0\n",
"11 12 10 15.0\n",
"12 13 10 14.0\n",
"13 14 10 NaN\n",
"14 15 10 NaN"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"### 💻 FILL IN YOUR DATASET FILE NAME BELOW 💻 ###\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"data = {\n",
" \"Student\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],\n",
" \"Traditional_Studying\": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],\n",
" \"Pear_Deck_Studying\": [14, 8, 10, 15, 14, 9, 13, 15, 9, 15, 15, 15, 14, None, None]\n",
"}\n",
"\n",
"file_name = \"YOUR_DATASET_FILE_NAME.csv\"\n",
"dataset_path = \"data/\" + file_name\n",
"\n",
"df = pd.read_csv(dataset_path)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "heated-blade",
"metadata": {},
"outputs": [],
"source": [
"df.head()"
"df = pd.DataFrame(data)\n",
"df"
]
},
{
@@ -310,7 +450,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.12.3"
},
"toc": {
"base_numbering": 1,