
Data plots


Perfect Plots_ Matrix of corelation
Feel free to read the code on GitHub Source of data: https://archive.ics.uci.edu/ml/datasets/combined+cycle+power+plant Combined Cycle Power Plant Data Set¶ Data Set Information:¶ The dataset contains 9568 […]

Perfect plot Joyplot
Feel free to read the code on GitHub In [1]: import joypy import pandas as pd import matplotlib.pyplot as plt Car market analysis¶ Source of […]

Perfect Plot: Classification charts
Feel free to read the code on GitHub data source: https://archive.ics.uci.edu/ml/datasets/Air+Quality In [1]: import numpy as np import pandas as pd import seaborn as sns import […]


Perfect Plots: Subplots
Feel free to read the code on GitHub In [1]: import pandas as pd import matplotlib.pyplot as plt import numpy as np Economics In [2]: […]

Perfect Plots: Individuals Control Chart I-MR
Energy Source of data: https://github.com/pyviz/holoviews/blob/master/examples/assets/energy.csv In [1]: import pandas as pd import matplotlib.pyplot as plt import numpy as np In [2]: df=pd.read_csv(’c:/2/Energy.csv’) df.head() Out[2]: Unnamed: 0 Date […]

Perfect Plots: Bar plots
Feel free to read the code on GitHub In [1]: import pandas as pd import matplotlib.pyplot as plt import numpy as np import matplotlib.patches […]

Perfect Plots: Combiplot
Feel free to read the code on GitHub Global market sales Source of data: https://github.com/vkrit/data-science-class/blob/master/WA_Fn-UseC_-Sales-Win-Loss.csv In [1]: import pandas as pd import matplotlib.pyplot as plt import […]

Perfect Plots: Violinplot
Feel free to read the code on GitHub In [1]: import pandas as pd import matplotlib.pyplot as plt import numpy as np import matplotlib.patches as […]

Dendrogram and clustering 3d
In [1]: import scipy.cluster.hierarchy as shc import pandas as pd import matplotlib.pyplot as plt # Import Data df = pd.read_csv(’c:/1/USArrests.csv’) USArrests Source of data: https://www.kaggle.com/deepakg/usarrests […]

Perfect Plots: Calendarplot
Feel free to read the code on GitHub In [1]: import matplotlib as mpl import calmap import pandas as pd import matplotlib.pyplot as plt […]

Perfect plots: Dendrogram
Feel free to read the code on GitHub Dendrograms is used to count number of clusters.Dendrogram works on the distance between point of dataframe. In [ ]: […]

Perfect Plots: H_line plot
Feel free to read the code on GitHub In [1]: import numpy as np import pandas as pd import seaborn as sns from sklearn.preprocessing import […]
