print("Hello, Python!")
Hello, Python!
This course is aimed at the Python developer who wants to learn how to do useful data analysis tasks. It will focus primarily on the Python package pandas to query, combine and visualise your data as well as covering seaborn to visualise them.
Data analysis is a huge topic and we couldn’t possibly cover it all in one short course so the purpose of this workshop is to give you an introduction to some of the most useful tools and to demonstrate some common problems that surface.
By the end of this course, you will:
pandas
and seaborn
.In this course, any time that we are seeing a small snippet of Python code, we’ll see it written in a grey box like the following:
print("Hello, Python")
If the commands are executed by the machine we will see the output of them below enclosed on a vertical purple line:
print("Hello, Python!")
Hello, Python!
There are some exercises along this course, and it is important you try to answer them yourself to understand how Python works. Exercises are shown in blue boxes followed by a yellow box that contains the answer of each exercise. We recommend you to try to answer each exercise yourself before looking at the solution.
Last, we will highlight important points using green boxes like this one: