All Projects → dgerlanc → Programming With Data

dgerlanc / Programming With Data

Licence: other
🐍 Learn Python and Pandas from the ground up

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Programming With Data

Mlnet Workshop
ML.NET Workshop to predict car sales prices
Stars: ✭ 29 (-81.41%)
Mutual labels:  jupyter-notebook, data-science, workshop
Pydata Pandas Workshop
Material for my PyData Jupyter & Pandas Workshops, I'm also available for personal in-house trainings on request
Stars: ✭ 65 (-58.33%)
Mutual labels:  jupyter-notebook, pandas, workshop
Python for ml
brief introduction to Python for machine learning
Stars: ✭ 29 (-81.41%)
Mutual labels:  jupyter-notebook, data-science, pandas
Py Quantmod
Powerful financial charting library based on R's Quantmod | http://py-quantmod.readthedocs.io/en/latest/
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook, data-science, pandas
Seaborn Tutorial
This repository is my attempt to help Data Science aspirants gain necessary Data Visualization skills required to progress in their career. It includes all the types of plot offered by Seaborn, applied on random datasets.
Stars: ✭ 114 (-26.92%)
Mutual labels:  jupyter-notebook, data-science, pandas
Pandas Profiling
Create HTML profiling reports from pandas DataFrame objects
Stars: ✭ 8,329 (+5239.1%)
Mutual labels:  jupyter-notebook, data-science, pandas
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-64.1%)
Mutual labels:  jupyter-notebook, data-science, pandas
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (+162.82%)
Mutual labels:  jupyter-notebook, data-science, pandas
Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (+1308.33%)
Mutual labels:  jupyter-notebook, data-science, pandas
Sigmoidal ai
Tutoriais de Python, Data Science, Machine Learning e Deep Learning - Sigmoidal
Stars: ✭ 103 (-33.97%)
Mutual labels:  jupyter-notebook, data-science, pandas
Python Introducing Pandas
Introduction to pandas Treehouse course
Stars: ✭ 24 (-84.62%)
Mutual labels:  jupyter-notebook, data-science, pandas
Pandas Videos
Jupyter notebook and datasets from the pandas Q&A video series
Stars: ✭ 1,716 (+1000%)
Mutual labels:  jupyter-notebook, data-science, pandas
Just Pandas Things
An ongoing list of pandas quirks
Stars: ✭ 660 (+323.08%)
Mutual labels:  jupyter-notebook, data-science, pandas
Crime Analysis
Association Rule Mining from Spatial Data for Crime Analysis
Stars: ✭ 20 (-87.18%)
Mutual labels:  jupyter-notebook, data-science, pandas
Data Science Portfolio
Portfolio of data science projects completed by me for academic, self learning, and hobby purposes.
Stars: ✭ 559 (+258.33%)
Mutual labels:  jupyter-notebook, data-science, pandas
Machinelearningcourse
A collection of notebooks of my Machine Learning class written in python 3
Stars: ✭ 35 (-77.56%)
Mutual labels:  jupyter-notebook, data-science, pandas
Code
Compilation of R and Python programming codes on the Data Professor YouTube channel.
Stars: ✭ 287 (+83.97%)
Mutual labels:  jupyter-notebook, data-science, pandas
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (+144.23%)
Mutual labels:  jupyter-notebook, data-science, pandas
Pymc Example Project
Example PyMC3 project for performing Bayesian data analysis using a probabilistic programming approach to machine learning.
Stars: ✭ 90 (-42.31%)
Mutual labels:  jupyter-notebook, data-science, pandas
Dat8
General Assembly's 2015 Data Science course in Washington, DC
Stars: ✭ 1,516 (+871.79%)
Mutual labels:  jupyter-notebook, data-science, pandas

Programming with Data: Python and Pandas

Binder

This repository contains the slides, exercises, and answers for Programming with Data: Python and Pandas. The goal of this tutorial is to teach you, someone with experience programming in Python, most of the features available in Pandas. The material from this course has been presented at conferences including ODSC and Battlefin Discovery Data and online through the O'Reilly platform.

Why this course exists

Whether in R, MATLAB, Stata, or python, modern data analysis, for many researchers, requires some kind of programming. The preponderance of tools and specialized languages for data analysis suggests that general purpose programming languages like C and Java do not readily address the needs of data scientists; something more is needed.

In this workshop, you will learn how to accelerate your data analyses using the Python language and Pandas, a library specifically designed for interactive data analysis. Pandas is a massive library, so we will focus on its core functionality, specifically, loading, filtering, grouping, and transforming data. Having completed this workshop, you will understand the fundamentals of Pandas, be aware of common pitfalls, and be ready to perform your own analyses.

Prerequisites:

Workshop assumes that participants have intermediate-level programming ability in Python. Participants should know the difference between a dict, list, and tuple. Familiarity with control-flow (if/else/for/while) and error handling (try/catch) are required.

No statistics background is required.

Installation

Binder

If you have a stable Internet connection and the free Binder service isn't under too much load, the easiest way to interactively run the slides and try the exercises is to click the Binder badge (make sure you open in a new window). Keep in mind that Binder aggresively shuts down idle instances so you'll need to refresh the link if you're idle for too long.

Binder

Prerendered Notebooks

You may view the HTML versions of slides and the answers directly in your browser on Github though you will not be able to run them interactively:

Local Installation

If you're taking the course, want to follow along with the slides and do the exercises, and may not have Internet access, download and install the Anaconda Python 3 distribution and conda package manager ahead of time:

https://www.anaconda.com/download/

Download the latest version of the course materials here.

Alternatively, you may clone the course repository using git:

$ git clone https://github.com/dgerlanc/programming-with-data.git

The remainder of the installation requires that you use the command line.

To complete the course exercises, you must use conda to install the dependencies specified in the environment.yml file in the repository:

$ conda env create -f environment.yml

This will create an conda environment called progwd which may be "activated" with the following commands:

  • Windows: activate progwd
  • Linux and Mac: conda activate progwd

Once you've activated the environment your prompt will probably look something like this:

(progwd) $

The entire course is designed to use jupyter notebooks. Start the notebook server to get started:

(progwd) $ jupyter lab

Feedback

Your feedback on the course helps to improve it for future students. Please leave feedback here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].