Video Course: Data Analysis with Python

VideoCourse-Cover

I’m happy to announce the release of my first video course Data Analysis with Python, published with Packt Publishing.

Links:

With 2 hours 26 minutes of content segmented into short video sessions, this course aims at introducing the audience to the field of Data Science using Python, discussing some of the fundamental tools of the trade.

Bird’s eye view on the course:

  1. Python Core
    • Course overview
    • Python Core Concepts and Data Types
    • Understanding Iterables
    • List Comprehensions
    • Dates and Times
    • Accessing Raw Data
  2. NumPy for Array Computation
    • Creating NumPy Arrays
    • Basic Stats and Linear Algebra
    • Reshaping, Indexing, and Slicing
  3. Pandas for Data Frames
    • Getting Started with Pandas
    • Essential Operations with Data Frames
    • Summary Statistics from a Data Frame
    • Data Aggregation over a Data Frame
  4. Exercise: Titanic Survivor Analysis
    • Exploratory Analysis of the Titanic Disaster Data Set
    • Predicting Titanic Survivor as a Supervised Learning Problem
    • Performing Supervised Learning with scikit-learn

More details are discussed on the PacktPub’s page.

Please have a look at the companion code for the course on my GitHub page, so you can have an idea of the topics discussed in the course.

Published by

Marco

Data Scientist

6 thoughts on “Video Course: Data Analysis with Python”

  1. I have bought the course but having I am trouble install the packages . This is what i did so far:
    – I installed Anaconda 3, 64-bit on a Windows 10 machine
    – I created the virtual environment as instructed
    – I downloaded the files from your Github repository
    – when I navigate to the directory where the files are located and run the “conda install –file conda-reqs.txt –yes” command, I get a PackageNotFoundError: Package not found: Conda could not find ´

    What could be the problem and how can I fix it?

    Like

    1. Hi Eric,
      which package in particular is not found? (I’ll need the full error to understand the issue)

      Cheers
      Marco

      Like

  2. Hi Marco. I found the problem, the first package (appnope) is for OS X, so in Windows the install quits immediately. I was able to install the packages (less three or four that are for OS X) individually through Anaconda Navigator.

    Like

Leave a comment