24

Python Fundamentals for Data Science

 4 years ago
source link: https://towardsdatascience.com/python-fundamentals-for-data-science-6c7f9901e1c8?gi=7d9ed4a44934
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Python Fundamentals for Data Science

Essentials of fundamental python programming to get started with Data Science.

be2uYz3.jpg!web

This is a 3-part series covering all the fundamentals of Python for Data Science

Beginners in the field of Data Science who are not familiar with programming often experience a hard time figuring out what the right starting point should be. With hundreds of questions on how to get started with Python programming for DS on various forums, this post along with the video series is my attempt to settle all those questions.

I have been a Python evangelist who has started off his career as a Full Stack Python Developer hopping on to Data Engineering and then Data Science. My prior experience with Python and a decent grasp over Maths made the switch to Data Science comfortable for me. So, here are the fundamentals to help you with programming in Python.

Before deep dive into the essentials, make sure that you have set up the Python environment and know how to use Jupyter Notebooks(optional).

The basic Python curriculum can be broken down into 4 essential topics that include:

  1. Data Types(Int, Float, Strings)
  2. Compound data structures(Lists, Tuples, and Dictionaries)
  3. Conditionals, Loops, and Functions
  4. Object-Oriented programming and using external libraries

Let’s quickly go over each one of them to see what is important to learn while covering fundamentals and what you’ll learn over time with experience.

1. Data Types and Structures

The very first step is to understand how Python interprets a variety of data. Starting with widely used data types, we should be familiar with Integer(int), Floats(float), strings(str), and boolean(bool). What should you practice

Type, typecasting, and I/O functions:

  • Learning the type of data using the type() method.
RvMzYvJ.png!web
a = 5.67
myUraa6.png!web

FfqEjeZ.png!web

Converting a string “55” into Integer 55 and conversion throws a value error when the casting isn’t possible.

Once you are familiar with the basic data types and their usage, we can now focus on the arithmetic operators and expression evaluations(DMAS) and you can store the result in a variable for further use.

reQzAbA.png!web

Strings:

You would be required to deal with textual data and strings and their operators come in very handy while dealing with the string data type. Practice these concepts:

  • Concatenating strings using + .
  • Splitting and joining the string using the split() and join() method.
  • Changing the case of the string using lower() and upper() methods.
  • Working with substrings of a string

Here’s the Notebook that covers all the points discussed.

2. Compound data structures(Lists, Tuples, and Dictionaries)

Lists and Tuples(compound data types):

One of the most commonly used and important data structures is Python lists which will pave the way for computing algebraic equations and statistical models on your array of data. A list is a collection of elements, the collection can be of the same or varied data types. Concepts to be familiar with:

  • Multiple data types can be stored in a python list.
  • Indexing and slicing to access a specific element or sub-list of the list.
  • Helper methods for sorting, reversing, deleting elements, copying, and appending.
  • Nested lists — lists containing lists. Ex: [1,2,3, [10,11]]
  • Adding and extending lists.
Multiplying a scalar and adding a list to another list.

Tuplesare an immutable ordered sequence of items. These are similar to lists but the key difference is that they are immutable whereas lists are mutable. The concepts to focus on:

  • Indexing and slicing(similar to lists)
  • Nested tuples.
  • Adding tuples and helper methods like count() and index()

Dictionaries

These are another type of collection in Python. The lists are simple integer indexed, dictionaries are more like addresses. We have key-value pairs in a dictionary. Keys are analogous to indexes in lists.

j2aAraf.png!web
Representation of a dict as key-value pairs

To access an element, you need to pass the key in squared brackets.

FV3IB3b.png!web
Accessing the value by passing in the key

Concepts to focus on:

  • Iterating a dictionary(would be covered in loops)
  • Using helper methods like get, pop, items, keys, update, etc

Notebook for the above topics can be found here .

3. Conditionals, Loops, and Functions

Conditions and Branching

We discussed boolean data types(True/False) in the first section, Python uses these boolean variables to assess conditions. Whenever there is a comparison or evaluation needed to be done, the boolean values are the resulting solution.

aUVjU3b.png!web

The comparison in the image needs to be observed carefully as people confuse the assignment operator(single equal sign =) with the comparison operator(double equal sign==).

Boolean operator(or, and, not)

These are used to evaluate complex assertions together.

OR — One of the many comparisons should be true for the entire condition to be true.

AND — All of the comparisons should be true for the entire condition to be true.

NOT — Checks for the opposite of the comparison specified.

E7rQFrU.png!web
i2mENje.png!web

Concepts to learn:

  • IF, ELSE, and ELIF statements to construct your condition.
  • Making complex comparisons in one condition.
  • Keeping indentation in mind while writing nested if/else statements.
  • Using boolean, “in”, “is” and “not” operators.

Loops

You will often need to do a task repetitively and loops are our best friend to eliminate the overhead of code redundancy. You’ll often need to iterate over each element of lists or dictionaries and loops come in handy for that. “While” and “For” are 2 types of loops. Focus on:

range()

z6jAVnI.png!web

  • Iterating lists and appending(or any other task with list items) elements in a particular order
rAfQRb3.png!web
  • Using break , pass , and continue keywords.

List Comprehension

A sophisticated and succinct way of creating a list using iterable followed by a for clause. For example, you can create a list of 9 cubes as shown in the example below using list comprehension.

6VV3eeU.png!web

Functions

Working on big projects with similar tasks being performed, maintaining code becomes a task and a convenient way to manage our code is using functions. A function is a block of code that performs some operations on the input data and gives you the desired output.

Makes the code more readable, reduces redundancy, makes the code reusable, and saves time.

Python uses indentation to have blocks of code. This is an example of a function:

nM3qUzz.png!web

We define a function using the def keyword followed by the name of the function and arguments(input) within the parentheses and a colon. The body of the function is the indented code block and the output is then returned as output.

zmieYz2.png!web

Calling functions —you call a function by specifying the name and passing the arguments within the parentheses as per the definition of it.

More examples and details here .

4. Object-Oriented programming and using external libraries

We have been using the helper methods for lists, dictionaries, and other data types but where are these coming from? When we say list or dict, we are actually interacting with a list class object or a dict class object. Printing the type of a dictionary object will show you that it is a class dict object.

aUzqmmU.png!web

These are all pre-defined classes in the python language and they make our tasks very easy and convenient.

Now, the objects are instance of a class and are defined as an encapsulation of variables(data) and functions into a single entity. They have access to the variables(attributes) and methods(functions) from classes.

Now, the question is can we create our own custom classes and objects? The answer is YES.

Here is how you define your class and the object of it:

UviEje7.png!web

You can then access the attributes and methods using the dot(.) operator.

Rzm6vqF.png!web

Using External Libraries/Modules

One of the reasons for using Python for Data Science is its amazing community that develops high-quality packages for different domains and problems. Using external libraries and modules is an integral part of working on projects in python.

These libraries and modules have defined classes, attributes, and methods that we can use to accomplish our tasks. For example, the math library contains many mathematical functions that we can use to carry out our calculations. These are .py files. You should learn to:

  • Import libraries in your workspace
ZFRjEv2.png!web
  • Using the help function to learn about the library or function

eMjaQ3u.png!web

  • Importing the required function directly:
2eARBjE.png!web
  • You should learn to read the documentation of the well-known packages like pandas, numpy and sklearn and use them in your projects

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK