diff --git a/README.md b/README.md index 3a87181..d9a2497 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Practice with git and GitHub -\[Your Step 3 Edit Here\] +I'm Patrick and I edited this file!!!! +I'm Patrick and I edited this file online! This is a very simple repository for practicing with git and GitHub. git is a utility for *version control*. When a body of code is tracked with git, it is easy to see how the software has evolved over time, to roll back changes when needed, and to incorporate modifications by multiple collaborators. In this activity, we're going to focus on core git workflows for single-person projects. We may do a follow-up activity later in the quarter on workflows for collaborative projects. diff --git a/practice-folder/jupter.ipynb b/practice-folder/jupter.ipynb new file mode 100644 index 0000000..f923fb6 --- /dev/null +++ b/practice-folder/jupter.ipynb @@ -0,0 +1,32 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from matplotlib import pyplot as plt\n", + "import numpy as np\n", + "\n", + "x = np.linspace(0, 2*np.pi, 1001)\n", + "y = np.sin(x)\n", + "f = plt.plot(x,y)" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}