Skip to content

Commit ab0b5cc

Browse files
authored
Merge pull request #82 from gperdrizet/dev
Fixes to dataset links
2 parents 6c91d06 + 937afe8 commit ab0b5cc

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

docs/datasets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ permalink: /datasets/
3333
<img src="https://raw.githubusercontent.com/FortAwesome/Font-Awesome/refs/heads/6.x/svgs/brands/github.svg" width="15" height="15">
3434
</a>
3535
{% else %}
36-
<a href="https://github.com/gperdrizet/FSA_devops/blob/main/data/unit{{ unit.number }}/{{ data.file }}">
36+
<a href="https://github.com/gperdrizet/FSA_devops/blob/main/data/unit{{ unit.number }}/{{ dataset.file }}">
3737
<img src="https://raw.githubusercontent.com/FortAwesome/Font-Awesome/refs/heads/6.x/svgs/brands/github.svg" width="15" height="15">
3838
</a>
3939
{% endif %}

notebooks/unit2/lesson_10/Lesson_10_activity.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"4. Show descriptive statistics for numerical columns using `.describe()`\n",
132132
"5. Find the average grade of all students\n",
133133
"\n",
134-
"Students data file avalible for download here: [students.csv](https://gperdrizet.github.io/FSA_devops/assets/notebooks/unit2/students.csv)"
134+
"Students data file avalible for download here: [students.csv](https://gperdrizet.github.io/FSA_devops/assets/data/unit2/students.csv)"
135135
]
136136
},
137137
{
@@ -269,7 +269,7 @@
269269
"4. Find the product with the highest total value\n",
270270
"5. Calculate the grand total of all sales\n",
271271
"\n",
272-
"Sales data file avalible for download here: [sales.csv](https://gperdrizet.github.io/FSA_devops/assets/notebooks/unit2/sales.csv)"
272+
"Sales data file avalible for download here: [sales.csv](https://gperdrizet.github.io/FSA_devops/assets/data/unit2/sales.csv)"
273273
]
274274
},
275275
{

notebooks/unit2/lesson_11/Lesson_11_activity_solution.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
"## Problem statement:\n",
1313
"Analyze the housing dataset using various types of plots to gain insights into the data.\n",
1414
"\n",
15+
"Housing sales dataset avalible here: [housing_data.csv](https://gperdrizet.github.io/FSA_devops/assets/data/unit2/housing_data.csv)\n",
16+
"\n",
1517
"## Steps to perform:\n",
1618
"1. Create a line plot to visualize the trend of house prices over the years.\n",
1719
"2. Use a scatter plot to visualize the relationship between two numerical variables, such as __LotArea__ and __SalePrice__.\n",
@@ -45,7 +47,7 @@
4547
},
4648
{
4749
"cell_type": "code",
48-
"execution_count": 2,
50+
"execution_count": null,
4951
"id": "3d78949f",
5052
"metadata": {},
5153
"outputs": [
@@ -250,7 +252,7 @@
250252
}
251253
],
252254
"source": [
253-
"url = 'https://raw.githubusercontent.com/gperdrizet/FSA_devops/refs/heads/main/data/unit2/housing_data.csv'\n",
255+
"url = 'https://gperdrizet.github.io/FSA_devops/assets/data/unit2/housing_data.csv'\n",
254256
"df = pd.read_csv(url)\n",
255257
"df.head()"
256258
]

notebooks/unit2/lesson_INC1/INC1_example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
],
369369
"source": [
370370
"# Load the CSV file into a DataFrame\n",
371-
"url = 'https://raw.githubusercontent.com/gperdrizet/FSA_devops/refs/heads/main/data/unit2/NSMES1988-NSMES1988.csv'\n",
371+
"url = 'https://gperdrizet.github.io/FSA_devops/assets/data/unit2/NSMES1988-NSMES1988.csv'\n",
372372
"df = pd.read_csv(url)\n",
373373
"# Display the DataFrame\n",
374374
"df"

0 commit comments

Comments
 (0)