Skip to content

Commit

Permalink
lab 10 pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoon committed Nov 7, 2014
1 parent 3c9b4fa commit a6cbb9d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions homework/HW0.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,16 @@
"print \"requests version: %6.6s (need at least 1.2.3)\" % requests.__version__\n",
"\n",
"# Networkx is a library for working with networks\n",
"import networkx as nx\n",
"print \"NetworkX version: %6.6s (need at least 1.7)\" % nx.__version__\n",
"# import networkx as nx\n",
"# print \"NetworkX version: %6.6s (need at least 1.7)\" % nx.__version__\n",
"\n",
"#BeautifulSoup is a library to parse HTML and XML documents\n",
"import bs4\n",
"print \"BeautifulSoup version:%6.6s (need at least 4.0)\" % bs4.__version__\n",
"\n",
"#MrJob is a library to run map reduce jobs on Amazon's computers\n",
"import mrjob\n",
"print \"Mr Job version: %6.6s (need at least 0.4)\" % mrjob.__version__\n",
"# import mrjob\n",
"# print \"Mr Job version: %6.6s (need at least 0.4)\" % mrjob.__version__\n",
"\n",
"#Pattern has lots of tools for working with data from the internet\n",
"import pattern\n",
Expand All @@ -157,26 +157,32 @@
"language": "python",
"metadata": {},
"outputs": [
{
"ename": "ImportError",
"evalue": "No module named pattern",
"output_type": "pyerr",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-5-866a670aaf39>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 40\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 41\u001b[0m \u001b[0;31m#Pattern has lots of tools for working with data from the internet\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 42\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mpattern\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 43\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0;34m\"Pattern version: %6.6s (need at least 2.6)\"\u001b[0m \u001b[0;34m%\u001b[0m \u001b[0mpattern\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__version__\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mImportError\u001b[0m: No module named pattern"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"IPython version: 2.1.0 (need at least 1.0)\n",
"Numpy version: 1.8.1 (need at least 1.7.1)\n",
"SciPy version: 0.14.0 (need at least 0.12.0)\n",
"Pandas version: 0.14.0 (need at least 0.11.0)\n",
"IPython version: 1.2.1 (need at least 1.0)\n",
"Numpy version: 1.8.2 (need at least 1.7.1)\n",
"SciPy version: 0.13.3 (need at least 0.12.0)\n",
"Pandas version: 0.13.1 (need at least 0.11.0)\n",
"Mapltolib version: 1.3.1 (need at least 1.2.1)\n",
"Scikit-Learn version: 0.14.1 (need at least 0.13.1)\n",
"requests version: 2.3.0 (need at least 1.2.3)\n",
"NetworkX version: 1.8.1 (need at least 1.7)\n",
"BeautifulSoup version: 4.3.1 (need at least 3.2)\n",
"Mr Job version: 0.4.2 (need at least 0.4)\n",
"Pattern version: 2.6 (need at least 2.6)\n",
"Seaborn version: 0.3.1 (need at least 0.3.1)\n"
"requests version: 2.2.1 (need at least 1.2.3)\n",
"BeautifulSoup version: 4.2.1 (need at least 4.0)\n"
]
}
],
"prompt_number": 10
"prompt_number": 5
},
{
"cell_type": "markdown",
Expand Down
Empty file modified homework/HW1.ipynb
100644 → 100755
Empty file.
Empty file modified labs/Lab2_Notes.ipynb
100644 → 100755
Empty file.

0 comments on commit a6cbb9d

Please sign in to comment.