Posts by Sourav Rastogi

Author Biographical Info: Not available

How to plot Line of Best fit in python

By Sourav Rastogi

First, we will importĀ  libraries import numpy as np import matplotlib.pyplot as plt Then we will create data points #Create data points x = np.array([0, 1, 2, 3, 4, 5]) y = np.arr.... Read More

How to calculate and plot the Normal CDF in Python

By Sourav Rastogi

First, we will import some libraries numpy, scipy, and Matplotlib. numpy for numerical operations,scipy. stats for statistical functions and matplot for plotting the plot. import n.... Read More

Related Posts