From 947a6cfc063bed161476836f9f2cf97b026f73e5 Mon Sep 17 00:00:00 2001 From: FlorianSpeicher Date: Mon, 11 Aug 2025 21:49:02 +0200 Subject: [PATCH] Change Notebook and readme to new DatraSet --- README.md | 2 +- notebook.ipynb | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1457edf..4417fc3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ As a data basis, we use a publicly available Steam Games dataset that we found o ## Dataset -We use the [Steam Games Dataset from Kaggle](https://www.kaggle.com/datasets/trolukovich/steam-games-complete-dataset). +We use the [Steam Games Dataset from Kaggle](https://www.kaggle.com/datasets/artermiloff/steam-games-dataset/data). ## Contributors diff --git a/notebook.ipynb b/notebook.ipynb index 7515a4e..5e1a17e 100644 --- a/notebook.ipynb +++ b/notebook.ipynb @@ -10,12 +10,12 @@ "The goal of this project is getting the genre(s) of a game trough its given metadata\n", "\n", "## Dataset\n", - "For our project we use a Steam DataSet from kaggle. You can find it under the following URL: [Kaggle.com](https://www.kaggle.com/datasets/trolukovich/steam-games-complete-dataset)" + "For our project we use a Steam DataSet from kaggle. You can find it under the following URL: [Kaggle.com](https://www.kaggle.com/datasets/artermiloff/steam-games-dataset/data)" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "id": "3116b75f", "metadata": {}, "outputs": [ @@ -136,7 +136,7 @@ "\n", "# load data\n", "# url,types,name,desc_snippet,recent_reviews,all_reviews,release_date,developer,publisher,popular_tags,game_details,languages,achievements,genre,game_description,mature_content,minimum_requirements,recommended_requirements,original_price,discount_price\n", - "dataset = pd.read_csv(\"./steam_games.csv\",sep=\",\")\n", + "dataset = pd.read_csv(\"./games_march2025_cleaned.csv\",sep=\",\")\n", "print(dataset.head())" ] },