diff --git a/Systems.ipynb b/Systems.ipynb new file mode 100644 index 0000000..e2a1aa3 --- /dev/null +++ b/Systems.ipynb @@ -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 +} diff --git a/test.ipynb b/test.ipynb deleted file mode 100644 index 7aa5e94..0000000 --- a/test.ipynb +++ /dev/null @@ -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 -}