{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "

\n", "Lecture 0: Introduction to the Course Logistics\n", "


\n", "\n", "


\n", "Welcome to the Cornell Data Science Training program!\n", "

\n", "\n", "Through these lectures and exercises, we aim to teach you basic data science concepts and how to apply them using a data science language. The topics that we will cover will include, but will not be limited to:\n", "\n", "* Tools for Data Science\n", "* Data Cleaning and Manipulation\n", "* Data visualization\n", "* Supervised Learning Algorithms\n", "* Unsupervised Learning\n", "* Meta-Learning\n", "\n", "We'll start with the basics of the language, to advanced applications in more advanced concepts. By the end of the course, you will have the foundation and basic skills to contribute to any subteam on Cornell Data Science, and to your career in this explosive field.\n", "


\n", "Recap: Why Data Science? And why Python?\n", "

\n", "\n", "Before we begin to explore Numpy and all of its applications, we need to remember why data science is so important today and why data scientists choose Python. Data science can be thought of as the basis for **empirical research**, since data is used to inform our **hypotheses** and provide **observations**. In many cases, this data is used either by businesses or by scientists to inform their understanding of a phenomenon. We use a combination of exploratory data analysis and modeling to draw conclusions from larges troves of data. Data science allows us to:\n", "\n", "* **analyze the past**, and\n", "* **predict the future** through large scale data processing.\n", "\n", "Our more recent ability to collect data in real time from many places in cluding websites, smart phones, and environmental sensors makes data science indredibly relevent in almost every industry, scientific discipline, or engineering endeavor today.\n", "\n", "So why is Python a good programming language for data science? Well, it is:\n", "\n", "* an easy-to-learn and readable language\n", "* an open language with a vibrant community\n", "\n", "Thanks to the efforts of this community, it offers an ever-growing set of data management, analytical processing, and visualization libraries, like Numpy, Pandas, and Sci-Kit Learn! Such libraries make Python applicable to every aspect of data science.\n", "Lastly, but very importantly, **Jupyter Notebooks** make Python-based analysis more producible and repeatable. They also provide built-in training and communication support to help with team collaboration." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "


\n", "Getting Started with Jupyter Notebooks\n", "

\n", "\n", "Jupyter Notebooks have led to it rapidly gaining broad acceptance within the data science community. Here are some of the key features of Jupyter Notebooks:\n", "\n", "* **Documented Data Science**\n", " * Allows us to document data science process by combining notes, code, and graphics\n", " * Allows others to read the notebooks and understand the motives behind each step and why decisions were made (good collaboration)\n", "

\n", "* **Reproducible science**\n", " * Allows you to show others exactly how you conducted the research\n", " * Allows for replication and inspection of other’s methods\n", "

\n", "* **Presentation of Results**\n", " * Can easily share notebooks with colleagues and present results as well\n", "

\n", "* **Support for Julia, Python, and R**\n", " * 3 of most popular programming languages for conducting data science\n", "\n", "So how do we set up the Jupyter Notebook on our computer? Here are the instructions you need:\n", "\n", "


\n", "Instruction to Install Jupyter Notebook\n", "


\n", "If you are an experienced Python user, you can simply go to the Command Prompt (Windows) or Terminal (Mac) and use:\n", "\n", " pip3 install jupyter\n", "\n", "where `pip3` is a Python Package Manager for version 3.\n", "\n", "However, if you are **new** to Python, we **highly recommend** downloading Anaconda.\n", "\n", "Anaconda is a Python distribution, which provide everything you need for python data science, including Python language itself, different libraries, and a package manager. If you don't really understand what we are talking about here, no worries! The main point here is that if you are new to Python, then downloading Anaconda distribution will make your life easier. Ahaha\n", "\n", "Check the [Anaconda setup instruction](https://docs.continuum.io/anaconda/install/) and install the Jupyter notebook. If you have any questions, please come to Office Hour and get help from the staffs. You need to make sure that it runs on your computer before the project comes!\n", "\n", "Once you finish setting it up on your computer, type the following command in your terminal or cmd:\n", "\n", " jupyter notebook\n", "\n", "and you will be able to launch the notebook on your computer's default web browser. Check this by downloading this note on your computer and open it with Jupyter notebook viewer!" ] } ], "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.6.1" } }, "nbformat": 4, "nbformat_minor": 2 }