add Systems.ipynb file

This commit is contained in:
Rivera 2025-08-24 16:37:36 -04:00
parent 71581da2c1
commit 2f419a01bb
2 changed files with 83 additions and 61 deletions

83
Systems.ipynb Normal file
View file

@ -0,0 +1,83 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "f11f3ba9",
"metadata": {},
"source": [
"# LABS-3: Systems Project\n",
"\n",
"In this notebook you will run a few cells to ensure that your environment is properly set up.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9074b8b7",
"metadata": {},
"outputs": [],
"source": [
"## First cell\n",
"# run this for step 11 in your instructions\n",
"\n",
"print(\"Hello, World!\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4c242432",
"metadata": {},
"outputs": [],
"source": [
"## Second cell\n",
"# run this for step 14 in your instructions\n",
"\n",
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "bb9cb781",
"metadata": {},
"outputs": [],
"source": [
"## Part 3: Accessing your data\n",
"# edit this code to load your data into your workspace\n",
"\n",
"data = pd.read_csv() #add your data file path to this line!\n",
"data.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ca63e2fd",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.4"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

View file

@ -1,61 +0,0 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "edeeb5ac",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hello world\n"
]
}
],
"source": [
"print(\"Hello world\")"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "ac7e25ca",
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3fa231b6",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.1"
}
},
"nbformat": 4,
"nbformat_minor": 5
}