Seaborn: Statistical Data Visualization
        Seaborn  is a Python data visualization library based on matplotlib.  It provides a high-level interface for drawing attractive and  informative statistical graphics.                                                    import  seaborn  as  sns   import  matplotlib.pyplot  as  plt  from  matplotlib  import  style  style . use ( 'ggplot' )                                         dv  =  cd . diagnosis          # dependent variable                 # M or B  list  =  [ 'id' , 'diagnosis' ]  iv  =  cd . drop ( list , axis  =  1  )  # independent variable  iv . head ()                                               radius_mean        texture_mean        perimeter_mean        area_mean        smoothness_mean        compactness_mean        concavity_mean        concave points_mean        symmetry_mean        fractal_dimension_mean        ...        radius_worst        texture_worst        perimeter_worst        area_worst        smoothness_worst        compactness_...