Learn Python For Analytics and Data Science
Learn Python For Analytics and Data Science
QUICK START
SPREADSHEETS
PYTHON
Introduction
I'm excited to partner with TDWI to offer a 4-hour online course designed
for any professional to quickly learn the Python skills needed for future
analytics and data science courses.
It's rare to find a professional not familiar with data tables. Data tables are
everywhere - from PowerPoint decks to Microsoft Excel to databases.
The course uses a running data table example to cement many of the
most important concepts when using Python for analytics and data
science.
The course focuses on the subset of Python most commonly used when
analyzing business data.
Students completing the course will be ready for future TDWI live analytics
and data science courses using Python.
https://bit.ly/TDWIPythonQuickStart 2
PYTHON QUICK START
However, you do have to learn how to use OO code written by others (e.g.,
the pandas library).
The good news is that learning how to use Python objects isn’t that difficult.
To learn about objects, we’ll use an example – the following data table:
https://bit.ly/TDWIPythonQuickStart 3
PYTHON QUICK START
In Python, objects are entities that have attributes and can perform
operations.
To make these ideas less abstract, consider the following table existing in
spreadsheet software:
=AVERAGE(MyOrders[Order Amount])
The above code (also called a formula) accesses the Order Amount
attribute of the MyOrders object.
https://bit.ly/TDWIPythonQuickStart 4
PYTHON QUICK START
=AVERAGE(MyOrders[Order Amount])
With Python objects, you can ask for them to exhibit a behavior by
invoking a method (i.e., a function):
MyOrders[‘Order Amount’].mean()
Notice how the object comes first in Python? That’s because Python is
object-oriented!
https://bit.ly/TDWIPythonQuickStart 5
PYTHON QUICK START
Through May 31st, get the 4-hour Python Quick Start course for just $75!
Use promo code LANGER to secure your savings today via the link below.
https://bit.ly/TDWIPythonQuickStart 6
PYTHON QUICK START
https://bit.ly/TDWIPythonQuickStart 7