Skip to content

Commit

Permalink
update dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
furkandrms committed May 11, 2023
1 parent 12ca404 commit 828d9d2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Car Prediction/CarPrice_Prediction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -58,6 +58,8 @@
"\n",
"import pandas as pd \n",
"import numpy as np \n",
"import requests\n",
"import io\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns\n",
"\n",
Expand All @@ -69,7 +71,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 12,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -274,13 +276,15 @@
"[5 rows x 26 columns]"
]
},
"execution_count": 2,
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data = pd.read_csv(\"/Users/furkandurmus/Desktop/Kaggle Projects/Data Science Projects/Car Prediction/CarPrice_Assignment.csv\")\n",
"url = \"https://raw.githubusercontent.com/furkandrms/data-science-projects/data/Car%20Prediction/CarPrice_Assignment.csv\"\n",
"response = requests.get(url, verify=False)\n",
"data = pd.read_csv(io.StringIO(response.text))\n",
"data_copy = data.copy()\n",
"data.head()"
]
Expand Down Expand Up @@ -16880,7 +16884,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.1 (v3.11.1:a7a450f84a, Dec 6 2022, 15:24:06) [Clang 13.0.0 (clang-1300.0.29.30)]"
"version": "3.11.1"
},
"orig_nbformat": 4,
"vscode": {
Expand Down

0 comments on commit 828d9d2

Please sign in to comment.