Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 687 Bytes

File metadata and controls

18 lines (13 loc) · 687 Bytes

data-visualization-1

Let's start learning data visualization step by step

see code file for more details everything is explained with comments there

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