In my previous post, we have seen how we can plot multiple bar graph on a single plot. In this post, we will see how we can plot a stacked bar graph using Python’s Matplotlib library. A stacked bar graph also known as a stacked bar chart is a graph that is used to break down and compare parts […]
Setting up Python Development Environment for Data Analysis
Nowadays, you have seen everyone talking about learning python for data science and data analysis. Here in this post, we will see how to set up Python Development Environment and packages especially for Data Analysis. Why Python? Python is an open source, easy to pick up, general programming language and it doesn’t matter whether you’re […]
Computing Bootstrap Replicate from Bootstrap Sample using Python
The basic idea is that instead of literally repeating the data acquisition process over and over again, we can simulate those repeated measurements using python. Here in this post, we will see how you can compute Bootstrap replicate from a bootstrap sample using Python Statistical Inference It is defined as a process by which we […]
Performing Linear Regression using Least Squares
Linear regression is defined as a linear approach which is used to model the relationship between dependent variable and one or more independent variable(s). When we try to model the relationship between a single feature variable and a single target variable, it is called simple linear regression. But when there is more than one independent […]