Let's start learning data visualization step by step
first step to data visualization in python is to import all therequired modules, for oure purpose the required modules are
from numpy.random import randn from scipy import stats import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline import pandas as pd
write this on your python work space
We can draw Histogram and rugplot of a data, the code in this repositorie is use randomely generated data points to plot Histogram and rugplot
this repositori also explains the difference between histogram and rugplot