Pair plot in seaborn

Pair plot in seaborn In the last tutorial plotting was made using only distplot ( ) function and passing different parameters through it.  Now in this tutorial , we shall work with another plot names as pairplot. This plot function plots with all possible columns present in the data set. In this tutorial also we …

Pair plot in seaborn Read More »

Introduction to seaborn in python

Introduction to seaborn in python Seaborn in python is a library for statistical plotting , built upon the matplot library ( which means matplot is the base to learn seaborn ) . Seaborn has more features and styles compared to the matplot library. This library is designed to work very well with pandas dataframe object. …

Introduction to seaborn in python Read More »

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 »