DataScience Blog

Introduction - Feature Selection

10 February, 2021

Here we see the significant part of Data Preprocessing. It is Feature Selection. Why so this is? It is because, failing in this part will…

Outlier Analysis - R

20 January, 2021

Please find the Outlier Analysis in R, Convert Strings into factor numeric for(i in 1:ncol(T1)) { if(class(T1 ,i ) ==‘factor…

Introduction - Outlier Analysis

03 January, 2021

It is also part of Data Preprocessing. Outlier is an object that deviates significantly from rest of the objects which causes major change…

Missing Value Analysis - R

25 December, 2020

We are going to do missing value analysis on a dataset. Its going to be full of R commands. Load Required Libraries x = c (“ggplot…

Introduction - Missing Value Analysis

30 September, 2020

We saw indispensable commands of R and Python for DataScience. Ofcourse what we saw is just a Wave and the Ocean to be crossed is still left…

Python- Part 6

15 September, 2020

Check below commands. The next set… Merge Dataframes import pandas as pd dfrm1 = pd.DataFrame({‘id’ : 34,22,12,13,11 , ‘Name’ : ‘Abi…

Python- Part 5

30 August, 2020

Here we go with next…Working with the mtcars dataset which we loaded before. Check the below screenshot for reference. Selecting rows with…

Python- Part 4

14 August, 2020

Continuing with matrix, list, array, dataframe creation.. Check this out… Create Matrix matrix_sample= np.matrix(‘8 5 3; 4 7 2; 9 6…

Python- Part 3

30 July, 2020

Continuing with more commands on excel operations. Getting n number of rows and columns Suppose if we want to extract 3 rows with 2 columns…

Python- Part 2

15 July, 2020

Lets see some more commands here. Load CSV File import os import pandas as pd import numpy as np import matplotlib as mlt Obj1 csv = pd…

Python- Part 1

26 June, 2020

After installing python and Jupyter Notebook, now start your Jupyter notebook from the terminal which runs in port 8888 in the localhost…

Python- Basics

26 May, 2020

Python… Just like the real python, it is huge in size(To study and understand). But ofcourse nothing is bigger than thirst of understanding…

R Part- 4

25 April, 2020

Here we go with next set of commands. In this page we will see datatype conversion. As we are going to handle with different types of data…

R Part- 3

14 March, 2020

Find the next set of R commands on DataFrame. In Last post, we saw, how to create matrix and vector, In this page we are going to work on…

R Part- 2

20 February, 2020

Here is the next set. I have posted screenshot for every single command so that you will catch up with right syntax. Let us start! What…

R Part- 1

10 February, 2020

In this page, we are going to see R commands. Try to install R and practice commands in the environment which will be more practical. Before…

R Basics

02 February, 2020

R! R is a OpenSource Programming Language and Domain Specific, Used for Statistical computing and Graphical Methods. R includes Machine…

Statistics - Part 3

26 January, 2020

In This page, we will see about some statistical technique like Hypothesis Testing ANOVA ( Analysis of Variance) Chi Square Test Uses of…

Statistics - Part 2

20 January, 2020

In previous page we saw about Mean, Median, Mode. In this page, we are going to see about Variance Standard Deviation, and some below…

Statistics - Part 1

14 January, 2020

In previous page, we covered Introduction and all basic information. From this page we actually enter into the course.Topics to be covered…

DataScience Basics

11 January, 2020

Introduction about the blog Welcome to the world of Data Science. If you are the one who is very passionate about Data Science, But Looking…