Ekta AggarwalNov 21, 2022Setting working directory in R - setwd getwdIn this tutorial we will understand what is a working directory and how to change it using setwd and getwd
Ekta AggarwalOct 17, 2022Visualisations in R (base package)In this tutorial we will learn how to create different plots with base functions in R.
Ekta AggarwalOct 5, 2022Summary function in RIn this tutorial we will learn about how to get the 'summary' i.e., the descriptive statistics of various columns in a dataframe in R.
Ekta AggarwalOct 5, 2022class function in RIn this tutorial we will learn about how to get the 'class' i.e., the datatype of various objects in R.
Ekta AggarwalSep 28, 2022Getting frequency distribution in R : Table functionIn this tutorial we will learn how to get the frequency distribution in R using table function.
Ekta AggarwalSep 28, 2022dim, nrow, ncol in R - Number of rows and columns in a dataframeIn this tutorial we will learn about how to get the number of rows and columns of a dataframe.
Ekta AggarwalAug 27, 2022Encoding Categorical Variables in PythonIn this tutorial we will learn how to encode or convert categorical variables in numbers. Categorical variables are generally of 2 types:...
Ekta AggarwalAug 27, 2022Transposing / Reshaping data in Python (wide and long formats)In this tutorial we shall try to understand what are long and wide formats and converting them from wide to long and long to wide in Python.
Ekta AggarwalAug 26, 2022Standardisation and Normalisation in PythonIn this tutorial we will understand the concepts of standardisation and normalisation and will learn how to implement them in Python
Ekta AggarwalAug 25, 2022Creating training and Test sets in PythonIn this tutorial we will be covering about the concepts and logic of training and test sets.
Ekta AggarwalAug 25, 2022Logistic Regression in PythonIn this tutorial we would be understanding how to implement Logistic Regression algorithm in Python.
Ekta AggarwalAug 24, 2022Logistic RegressionLogistic Regression is used for classification problems which is used to predict the dependent variable which is categorical in nature....