In this lab you will refresh your Python skills and become familiar with installing Anaconda and Jupyter on your own machine.
Let the missing be your order, Leaving out the one I drop. Bright has won while dim is zilching, Go around until you stop. Split the journey into thirds as keys For what had come before. Tragic end on island clifftop And in forty-four no more.
Write a program in Python that solves the riddle above, using the puzzle files provided. Solving the puzzle by hand without evidence of coding will only be awarded minimal points.
As you work on this lab, record all of your progress in a Jupyter notebook, both successes and failures. Record your solutions and attempts in Code blocks, and annotate what you did with MarkDown blocks. Cite all the webpages you find and use in your search for your solution.
Code
MarkDown
To analyze our data this semester, we will be using Anaconda and Jupyter Notebooks, and hosting these on our own computers. What we will be doing is usually too large for the free cloud-based notebooks like Azure.
The Anaconda Installation page lists many instructions for multiple operating systems. Follow the instructions that make sense to you. The most recent Anaconda version is 2020.07.
Now we can test to see that everything is working. Follow these instructions or mine below to get the base environment ready.
base
Then, type jupyter notebook and a browser window should appear. From here, you can make a notebook as I have demonstrated in class.
jupyter notebook
Open up the terminal and type
conda env list
Hopefully you only see the base environment. Then type
source activate base
to get the mappings correct for your programs.
Open up the Anaconda Prompt and type
activate base
At the anaconda prompt with the base environment activated, type:
pip install matplotlib pip install pandas pip install plotnine pip install scipy pip install numpy pip install geopandas pip install scikit-learn