Matplot library

Matplot library Topics covered in last tutorials: Pandas  Manipulating data using pandas Matplotlib: This is a plotting library for python. If you are familiar with plotting the figures in MatLab then these Matplotlib tutorials would be very easy for us. Let us understand how to import this library in the jupyter notebook. Even though the …

Matplot library Read More »

Operations using pandas | Part-2

Operations using pandas Importing external files in jupyter notebook: In jupyter notebook we can read and edit many types of files like excel files, csv files, html files and many more files. To read a file in jupyter notebook,                pd.read_csv(“file_name.csv”)     #to read csv file There are many operations that can be performed on …

Operations using pandas | Part-2 Read More »

Operations using pandas

Operations using pandas Content of previous tutorial Pandas intro Series DataFrame Few operations on Series and DataFrame Selection: In the previous tutorial we have learnt , how to select a particular element and subset of the dataframe. Selecting  an element.                DataFrame_name [ ‘row_label’ , ‘col_label’ ] This would be our data frame for the …

Operations using pandas Read More »

Introduction to pandas

Introduction to pandas Pandas is a very powerful tool for data scientist , this tool is used to manipulate data like filling the missing values , filtering , sorting and many other operations on CSV , EXCEL , HTML and other files. It is an open source tool built top on numpy library. This is …

Introduction to pandas Read More »

Indexing and slicing in numpy

Indexing and slicing in numpy Indexing and slicing in numpy: Indexing and slicing in numpy is similar to indexing and slicing in lists. Here challenges come when the array is two dimensional, Let us see indexing in two dimensional array. There are two ways to access an element from 2D array.                              – array_1[2][3]                              – array_1[2,3] …

Indexing and slicing in numpy Read More »

Introduction to numpy

Introduction to numpy Topics covered in previous Tutorials:Crash course on python Numpy: It is Numerical Python.|It is a library in python that holds linear algebra. It is a open source platform and mainly used for mathematical and logical operations in python. It has also great power to work with fourier transforms. Numpy is very much …

Introduction to numpy Read More »

DC motor speed control

DC motor speed control In this article , It is explained how can DC motor speed control can be varied by two methods. Controlling the speed of DC motors at many applications becomes so important that, without speed control at those situations , the complete project gets damaged. What is a DC motor: As the …

DC motor speed control Read More »

Functions and Strings

Functions and Strings In this tutorial we shall discuss about functions and strings. Topics we covered in the last tutorial: Iteration Range List comprehension Function : A Function is a set of instructions ( code ) that is either defined by the computer or defined by the user ( we will learn how to define …

Functions and Strings Read More »

Iterations

Iterations In this tutorial, we shall discuss the Iterations. Topics we covered in the last tutorial: Boolean Comparison  Operators Decision Making in Python: Iterations: In normal execution, each statement is executed only once, but in iterations, the output is displayed continuously until the given condition breaks. Types of iterations in python: For While For loop …

Iterations Read More »

Boolean and Sets

Boolean and Sets In this tutorial we shall discuss about Boolean and Sets. Topics we have discussed in previous tutorials: Dictionaries Functions of dictionaries Tuples Functions of tuples Sets Few important functions of sets Boolean: Boolean are the expression such as True, False. These are used to test the data whether it is correct or …

Boolean and Sets Read More »