All in One Offer! | Access Unlimited Courses in any category starting at just $29. Offer Ends in:

Browse Library

  • Business Solutions
  • Become an Instructor
  • 0
    Shopping Cart

    Your Cart is empty. Keep shopping to find a course!

    Browse Courses
Get Unlimited Learning Access
$29
3 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
Subscribe to Learnfly’s top courses
Get this course, plus 11,000+ of our top-rated courses for one year with Go Annually Plan.
$348 $244 a year Save 30%
3 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
$29
$244
  • Build a fully-functioning Python library similar to pandas that you can use to do data analysis
  • Complete a large, comprehensive project
  • Test-driven development with pytest
  • Environment creation with conda
  • Advanced Python topics such as special methods and property decorators

Build a Data a Data Analysis Library from Scratch in Python targets those that have a desire to immerse themselves in a single, long, and comprehensive project that covers several advanced Python concepts. By the end of the project you will have built a fully-functioning Python library that is able to complete many common data analysis tasks. The library will be titled Pandas Cub and have similar functionality to the popular pandas library.

This course focuses on developing software within the massive ecosystem of tools available in Python. There are 40 detailed steps that you must complete in order to finish the project. During each step, you will be tasked with writing some code that adds functionality to the library. In order to complete each step, you must pass the unit-tests that have already been written. Once you pass all the unit tests, the project is complete. The nearly 100 unit tests give you immediate feedback on whether or not your code completes the steps correctly.

There are many important concepts that you will learn while building Pandas Cub.

  • Creating a development environment with conda

  • Using test-driven development to ensure code quality

  • Using the Python data model to allow your objects to work seamlessly with builtin Python functions and operators

  • Build a DataFrame class with the following functionality:

    • Select subsets of data with the brackets operator

    • Aggregation methods - sum, min, max, mean, median, etc...

    • Non-aggregation methods such as isna, unique, rename, drop

    • Group by one or two columns to create pivot tables

    • Specific methods for handling string columns

    • Read in data from a comma-separated value file

    • A nicely formatted display of the DataFrame in the notebook

It is my experience that many people will learn just enough of a programming language like Python to complete basic tasks, but will not possess the skills to complete larger projects or build entire libraries. This course intends to provide a means for students looking for a challenging and exciting project that will take serious effort and a long time to complete.

This course is taught by expert instructor Ted Petrou, author of Pandas CookbookMaster Data Analysis with Python, and Exercise Python.

  • Students must know the fundamentals of Python. This is an intermediate/advanced course.
  • Must feel comfortable using and iterating through lists, tuples, sets, and dictionaries
  • Exposure to numpy and pandas is helpful
  • Students who understand the fundamentals of Python and are looking for a longer more comprehensive project covering advanced topics that they can immerse themselves in.
View More...
  • Section 1 : Project Generics 3 Lectures 00:25:47

    • Lecture 1 :
    • Lecture 2 :
    • Pandas Cub Examples
    • Lecture 3 :
    • Downloading the Material from GitHub
  • Section 2 : Environment Setup 4 Lectures 00:31:34

    • Lecture 1 :
    • Opening the Project in VS Code
    • Lecture 2 :
    • Setting up the Development Environment
    • Lecture 3 :
    • Test-Driven Development
    • Lecture 4 :
    • Installing an IPython Kernel for Jupyter
  • Section 3 : Getting Ready to Code 4 Lectures 00:22:17

    • Lecture 1 :
    • Inspecting the __init__.py File
    • Lecture 2 :
    • Importing Pandas Cub
    • Lecture 3 :
    • Manually Test in a Jupyter Notebook
    • Lecture 4 :
    • Getting Ready to Start
  • Section 4 : DataFrame Constructions 3 Lectures 00:17:20

    • Lecture 1 :
    • Check DataFrame Constructors Input Types
    • Lecture 2 :
    • Check Array Lengths
    • Lecture 3 :
    • Convert Unicode Arrays to Object
  • Section 5 : Basic Properties and Visual Representation 7 Lectures 00:54:08

    • Lecture 1 :
    • Implementing the __len__ Special Method
    • Lecture 2 :
    • Return Columns as a List
    • Lecture 3 :
    • Set New Column Names
    • Lecture 4 :
    • The shape Property
    • Lecture 5 :
    • Visual Notebook Representation
    • Lecture 6 :
    • The values Property
    • Lecture 7 :
    • The dtypes Property
  • Section 6 : Subset Selection 10 Lectures 00:45:44

    • Lecture 1 :
    • Select a Single Column
    • Lecture 2 :
    • Select Multiple Columns
    • Lecture 3 :
    • Boolean Selection
    • Lecture 4 :
    • Check for Simultaneous Selection
    • Lecture 5 :
    • Select a Single Cell
    • Lecture 6 :
    • Select Rows as Booleans, Lists, or Slices
    • Lecture 7 :
    • Multiple Column Simultaneous Selection
    • Lecture 8 :
    • Column Slices
    • Lecture 9 :
    • Tab Completion for Columns
    • Lecture 10 :
    • Create a New Column
  • Section 7 : Basic Methods 6 Lectures 00:31:21

    • Lecture 1 :
    • head and tail Methods
    • Lecture 2 :
    • Generic Aggregation Methods
    • Lecture 3 :
    • The isna Method
    • Lecture 4 :
    • The count Method
    • Lecture 5 :
    • The unique Method
    • Lecture 6 :
    • The nunique Method
  • Section 8 : Value Counts 2 Lectures

    • Lecture 1 :
    • Normalize value_counts
    • Lecture 2 :
    • The value_counts Method
  • Section 9 : Others Method and Operations 8 Lectures 00:54:08

    • Lecture 1 :
    • The rename Method
    • Lecture 2 :
    • The drop Method
    • Lecture 3 :
    • Non-Aggregation Methods
    • Lecture 4 :
    • The diff Method
    • Lecture 5 :
    • The pct_change Method
    • Lecture 6 :
    • Arithmetic and Comparison Operators
    • Lecture 7 :
    • The sort_values Method
    • Lecture 8 :
    • The sample Method
  • Section 10 : Pivot Tables 5 Lectures 00:42:08

    • Lecture 1 :
    • Pivot Tables Part 1
    • Lecture 2 :
    • Pivot Tables Part 2
    • Lecture 3 :
    • Pivot Tables Part 3
    • Lecture 4 :
    • Pivot Tables Part 4
    • Lecture 5 :
    • Pivot Tables Part 5
  • Section 11 : Documentation, String and Reading CSVs 5 Lectures 00:45:13

    • Lecture 1 :
    • Automatically Add Documentation
    • Lecture 2 :
    • String-only Methods
    • Lecture 3 :
    • The read_csv Function part 1
    • Lecture 4 :
    • The read_csv Function part 2
    • Lecture 5 :
    • Conclusion
  • How do i access the course after purchase?

    It's simple. When you sign up, you'll immediately have unlimited viewing of thousands of expert courses, paths to guide your learning, tools to measure your skills and hands-on resources like exercise files. There’s no limit on what you can learn and you can cancel at any time.
  • Are these video based online self-learning courses?

    Yes. All of the courses comes with online video based lectures created by certified instructors. Instructors have crafted these courses with a blend of high quality interactive videos, lectures, quizzes & real world projects to give you an indepth knowledge about the topic.
  • Can i play & pause the course as per my convenience?

    Yes absolutely & thats one of the advantage of self-paced courses. You can anytime pause or resume the course & come back & forth from one lecture to another lecture, play the videos mulitple times & so on.
  • How do i contact the instructor for any doubts or questions?

    Most of these courses have general questions & answers already covered within the course lectures. However, if you need any further help from the instructor, you can use the inbuilt Chat with Instructor option to send a message to an instructor & they will reply you within 24 hours. You can ask as many questions as you want.
  • Do i need a pc to access the course or can i do it on mobile & tablet as well?

    Brilliant question? Isn't it? You can access the courses on any device like PC, Mobile, Tablet & even on a smart tv. For mobile & a tablet you can download the Learnfly android or an iOS app. If mobile app is not available in your country, you can access the course directly by visting our website, its fully mobile friendly.
  • Do i get any certificate for the courses?

    Yes. Once you complete any course on our platform along with provided assessments by the instructor, you will be eligble to get certificate of course completion.
  • For how long can i access my course on the platform?

    You require an active subscription to access courses on our platform. If your subscription is active, you can access any course on our platform with no restrictions.
  • Is there any free trial?

    Currently, we do not offer any free trial.
  • Can i cancel anytime?

    Yes, you can cancel your subscription at any time. Your subscription will auto-renew until you cancel, but why would you want to?

1392 Course Views

4 Courses

I am the author of Pandas Cookbook and Master Data Analysis with Python, highly rated texts on performing real-world data analysis with Pandas. I am the founder of Dunder Data, a company that teaches the fundamentals of data science and machine learning. I enjoy discovering best practices on how to use and teach data analysis with Python. I also enjoy creating open-source Python libraries and am author of Dexplot, Bar Chart Race, DataFrame Image, and Jupyter to Medium.
View More...
  • Unmatched Variety and Value!
    Learnfly's monthly subscription offers unlimited access to a vast range of courses. Affordable pricing, compared to competitors, makes it the ultimate choice for continuous learning.
    Jessica M.

    4.7

    JM
  • Top-Notch Quality, Affordable Rates!
    High-quality courses with certified instructors make Learnfly stand out. The affordable pricing is a game-changer for those seeking premium education.
    Alex P.

    4.5

    AP
  • Certified Excellence Every Time!
    Learnfly's courses, taught by certified instructors, ensure top-notch learning experiences. The course completion certificates add significant value to one's skill set.
    Sarah R.

    4.3

    SR
  • Round-the-Clock Support!
    Learnfly goes the extra mile with 24/7 course support. Their dedication to helping students succeed is commendable.
    Ryan K.

    4.1

    RK
  • Learn Anywhere, Anytime!
    Whether on mobile, PC, or tablet, Learnfly's platform offers flexibility. Learning on the go has never been easier.
    Emily S.

    4.7

    ES
  • Job-Ready Skills!
    Learnfly's job-oriented courses equip learners with practical skills for the workplace. An investment in career growth!
    Jake M.

    4.2

    JM
  • Budget-Friendly Brilliance!
    Learnfly's pricing is a steal for the quality and variety of courses offered. Quality education without breaking the bank.
    Olivia T.

    4.5

    OT
  • Instructor Excellence Unleashed!
    Learn from the best with Learnfly's certified instructors. The platform ensures that knowledge is imparted by industry experts.
    Daniel L.

    4.0

    DL
  • Achievement Unlocked!
    Learnfly not only offers courses but also recognizes your efforts with course completion certificates. A sense of accomplishment with every course finished.
    Maya H.

    4.6

    MH
  • Learning Revolution!
    Learnfly's platform is a revolution in education. Access to unlimited courses at affordable rates is a game-changer.
    Ethan W.

    4.7

    EW
  • google-tensorflow-hands-on-with-python-latest

    Google TensorFlow Hands on with Pyt...

    By : UNP United Network of Professionals

    Lectures 51 Beginner 3:48:44
  • learn-elixir-programming-from-zero-to-hero

    Learn ELIXIR programming from Zero ...

    By : Pranjal Srivastava

    Lectures 35 Beginner 3:12:57
  • create-your-own-programming-language-from-scratch

    Create your OWN Programming Languag...

    By : Harshit Srivastava

    Lectures 6 Intermedite 0:42:43
  • getting-started-with-coding

    Getting started with coding

    By : Devansh ‎

    Lectures 27 Beginner 3:37:31
  • superb-python-course-become-certified-python-developer

    Superb Python Course - Become Certi...

    By : Paul Carlo Tordecilla

    Lectures 91 Beginner 2:49:20
  • c-from-the-beginning

    C# from the beginning

    By : Igor Evdokimov

    Lectures 31 Beginner 2:46:54

Students learning on Learnfly works with Fortune 500 companies around the globe.

Sign Up & Start Learning
By signing up, you agree to our Terms of Use and Privacy Policy
Reset Password
Enter your email address and we'll send you a link to reset your password.